#查找在一个表存在的字段,在另一个表不存在
select *
from user_a u
where u.user_id not in( select b.user_id from user_b b ) limit 10
参考链接:https://www.iteye.com/problems/71345
#查找在一个表存在的字段,在另一个表不存在
select *
from user_a u
where u.user_id not in( select b.user_id from user_b b ) limit 10
参考链接:https://www.iteye.com/problems/71345