原 SQL 学习整理
|-摘 sql查询两张表中不同的数据
select * from B where (select count(1) from A where A.ID = B.ID) = 0
select * from B where (select count(1) from A where A.ID = B.ID) = 0
注意,这里A.id字段要和B.id字段的类型相同,比如都是int,否则执行会报错
有比如
select * from B where (select count(1) from A where A.name= B.name) = 0...
浏览更多内容请先登录。
立即注册
更新于:2022-04-19 03:26:04
相关内容
mysql 中文全文索引模糊查询和like模糊查询的速度对比
MySQL数据库设计总结
什么是B-Tree
二叉查找树、平衡二叉树、红黑树、B-/B+树性能对比
msyql备份数据的语句mysqldump使用
mysql查询指定列的重复行数
推荐内容