首页
百科大全
文学
登录
标签
mysql 查询差集方法
mysql 查询差集方法
第一种是通过not in的方式去处理:select id from table_a where id not in (select id from table_b);第二种则是通过左连接(left join)的方式:select * fro
mysql 查询差集方法
admin
1月前
31
0