sql:查询关联的两个表中数据存在⼀个表⽽不存在另⼀个表的
数据记录
⽅法⼀(仅适⽤单个字段)
使⽤ not in ,容易理解,效率低
select A.ID from A where A.ID not in (select ID from B)
⽅法⼆(适⽤多个字段匹配)
使⽤ , "B.ID isnull" 表⽰左连接之后在B.ID 字段为 null的记录
select A.ID from A left join B on A.ID=B.ID where B.ID is null
⽅法三(适⽤多个字段匹配)
select * from B where (select count(1) as num from A where A.ID = B.ID) = 0
⽅法四(适⽤多个字段匹配)
select * from A where not exists(select 1 from B where A.ID=B.ID)
sql语句怎么查询两张表的数据附:select 1 from B这⾥的意思是只要B中有值就是显⽰1 或者理解为:表有多少条记录,结果就是多少条"1"的⾏.
就是如果表⾥如果有记录,就显⽰1 简单理解就是不查询具体列,只要有值就显⽰1
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论