inner join 和 where 有区别吗?
資深大佬 : rqxiao 15
select b.* from b,c where b.mobile=c.mobile
select b.* from b inner join c on b.mobile=c.mobile
explain 显示的内容都是一样的额.
大佬有話說 (3)
select b.* from b,c where b.mobile=c.mobile
select b.* from b inner join c on b.mobile=c.mobile
explain 显示的内容都是一样的额.