比对A.B两个表有没有相同值的字段代码怎么写
比对A.B两个表有没有相同值的字段代码怎么写
[解决办法]
select * from A join B
on A.字段1=B.字段1 and A.字段2=B.字段2 ...
查出来的结果就是相同的记录
[解决办法]
//查询A/B中相同 的数据
select A.* from A, B where A.xid=B.xid
select * from A where xid in (select xid from B)
select A.* from A inner join B ON a.xid=b.xid