mysql – Soll ich in der folgenden Anweisung Left Join verwenden oder nicht?
PHP中文网
PHP中文网 2017-06-06 09:52:24
0
2
1051

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

PHP中文网
PHP中文网

认证0级讲师

Antworte allen(2)
小葫芦

not exists正解

select id from a where not exists (select 1 from b where a.id=b.aid) and status = 1
習慣沉默

我想使用 not exists

浅谈sql中的in与not in,exists与not exists的区别

Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage