Implementierung: Datensätze in a abfragen, die nicht mit b in Zusammenhang stehen
1、select id from a left join b on a.id = b.aid where b.id is null and status = 1
2、select id from a where id not in (select aid from b) and status = 1
Welches ist besser oder wenn es einen anderen Weg gibt, hinterlassen Sie bitte eine Antwort
not exists正解
我想使用 not exists
浅谈sql中的in与not in,exists与not exists的区别