查询两个表(表1,表2)这两个表有相同的ID
Posted master_yao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了查询两个表(表1,表2)这两个表有相同的ID相关的知识,希望对你有一定的参考价值。
查询两个表(表1,表2)这两个表有相同的ID
select * from 表1 a,表2 b where a.id<>b.id
select distinct aid from aaa where aid not in(select distinct a.aid from aaa a,bbb b where a.aid=b.aid)
select * from 表1 where id=intmyid Union select * from 表2 where id= intmyid
select * from 表1 left join 表2 on 表1.id = 表2.id
以上是关于查询两个表(表1,表2)这两个表有相同的ID的主要内容,如果未能解决你的问题,请参考以下文章