能不能在一条SQL语句里,查询两张表

如题所述

第1个回答  2016-11-05
可以。

select a.* , b.* from TableName a TableName b
where a.ColumnName = b.ColumnName
相似回答