Sqlserver自动优化

 (1)select a.* from tb1 a left join tb2  b on a.id=b.id where Sqlserver自动优化a.name='1'

(2)select * from (select a.* from  tb1 a left join tb2 b on a.id=b.id) as d where name='1'

(3)建视图tbView :select a.* from  tb1 a left join tb2 b on a.id=b.id

select * from tbView as d where name='1'

这三种写法执行效率一模一样,印象中应该第一种写法最快。

上一篇:Android "QR二维码扫描"


下一篇:arcmap搜索脚本错误