mysql 2个数据表关联查询

mysql 2个数据表关联查询(tableA,tableB)

select a,b from tableA,tableB where tableA.m = tableB.m

select a,b from tableA left join tableB on  tableA.m = tableB.m

select a,b from tableA left join tableB using (m)

的查询结果是相同的

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zgwxfz.html