是要同时查出两个表所有的记录,还是这个字段相同的记录?1.同时查出两个表所有的记录:select 字段from table1union select 字段from table2 2.这个字段相同的记录select * from table1,table2where table1.字段 = table2.字段
以相同字段作为连接条件查询不会么