发布网友 发布时间:2022-04-26 14:30
共4个回答
热心网友 时间:2022-04-07 20:39
select * from table1 where id in(select id from table2) 或者热心网友 时间:2022-04-07 21:57
select (a.字段1,a.字段2, ...,b.字段1)此为你想得到的字段 from (table1 a,table2 b)此为要查询的表名 where (a.字段1=b.字段1 and a.字段2=b.字段2 and ...)此为两张表相同的字段热心网友 时间:2022-04-07 23:32
select * from tab1 --全集减去不一样的就是一样的了热心网友 时间:2022-04-08 01:23
select * from table1 a,table2 b where a.字段1=b.字段1 and a.字段2=b.字段2 and 。。。