内连接 其实等价于 select * from a,b where a.id = b.id
如果不写 where 条件,相当于笛卡尔积。
取的是2张表交集,所以 a jion b 还是 b jion a 结果是一样的
https://blog.csdn.net/liitdar/article/details/80817087