sql:查询关联的两个表中数据存在⼀个表⽽不存在另⼀个表的
数据记录
⽅法⼀(仅适⽤单个字段)
使⽤ not in ,容易理解,效率低
lect A.ID from A where A.ID not in (lect ID from B)宣誓书
⽅法⼆(适⽤多个字段匹配)
网圣使⽤ , "B.ID isnull" 表⽰左连接之后在B.ID 字段为 null的记录
忆童年
lect A.ID from A left join B on A.ID=B.ID where B.ID is null
⽅法三(适⽤多个字段匹配)
合肥好玩的lect * from B where (lect count(1) as num from A where A.ID = B.ID) = 0
⽅法四(适⽤多个字段匹配)
快乐的朋友
lect * from A where not exists(lect 1 from B where A.ID=B.ID)柴夫
附:lect 1 from B这⾥的意思是只要B中有值就是显⽰1 或者理解为:表有多少条记录,结果就是多少条"1"的⾏.公鸡能炖汤吗
西餐用餐礼仪 就是如果表⾥如果有记录,就显⽰1 简单理解就是不查询具体列,只要有值就显⽰1