判断一个表的数据不在另一个表中最优秀方法

复制代码 代码如下:

table a columns(key,value);

table b columns(key,value);

select a.* from a left join b

on a.key = b.key

where b.key is null

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐