你们想从数据库中获取一个记录,该数据库接收了大量数据,需要多个链接。
因此,我的问题是,如果存在数据,是否最好使用单一询问来检查数据,如果数据存在,则取得结果? 或者更简单的询问,如果存在数据,则检查数据是否存在,则再次询问是否知道数据存在。
例:
表3
select * from
from a, b, ab
where condition
and condition
and condition
and condition etc...
或
select id
from a, b ab
where condition
如果存在上述问题的话。
So I don t know if there is any reason to do the second. Any ideas how this affects DB performance 或does it matter at all?