Mysql 多表关联查询

多表查询,如果找不到关联两个表的方法, 可以使用

select * from table_1 inner join table_2 on table_1.field_1 = table_2.field_2 as table_dummy; 

构建一个虚拟的表。

原文地址:https://www.cnblogs.com/fzw-/p/8850234.html