where 和 join on有什么区别啊.都能达到同样的效果.
select * from A a,B b where a.id=b.id;
select * from A a join B b on(a.id=b.id);
都能达到同样效果.各有什么好处?效率哪个更好?
select * from A a,B b where a.id=b.id;
select * from A a join B b on(a.id=b.id);
都能达到同样效果.各有什么好处?效率哪个更好?
2015-05-25
举报