sql >> Databasteknik >  >> RDS >> Mysql

Varför dupliceras mitt resultat när jag använder subquery?

select A.userNum from users A where A.userNum NOT IN  (select A.userNum from users A, addressbook B, (select A.userNum from users A, addressbook B where B.userNum=1 and B.phone=A.phone) C where C.userNum=B.userNum and A.phone=B.phone) ;



  1. Data finns i rader till kolumner

  2. SQL-problem:en till många relation och EAV-modell

  3. DBTIMEZONE-funktion i Oracle

  4. PRIMARY KEY-definition i MySQL CREATE TABLE-satsen