一般sql操作

1.兩張表查詢a表中不在b表中的數據。 方法一: select a.id from t_user_a a where a.id not in (select c.id from t_user_a c,t_user_b b where c.id=b.id) 方法二: select * from t_user_a a left join t_user_b b on a.id = b.id where
相關文章
相關標籤/搜索