求解,这俩SQL有什么区别 RT,这俩SQL在性能上有什么区别,为什么
select b.* from a left join b on a.id=b.id where [a].id=1
select b.* from a left join b on a.id=b.id where [b].id=1
分享到:
------解决方案-------------------- 执行计划 存在巨大差异
select b.* from a left join b on a.id=b.id where [a].id=1 这句逻辑读取破万
select b.* from a left join b on a.id=b.id where [b].id=1 这句逻辑读取在10以内