Einzelnen Beitrag anzeigen

omata

Registriert seit: 26. Aug 2004
Ort: Nebel auf Amrum
3.154 Beiträge
 
Delphi 7 Enterprise
 
#8

Re: [SQL] Outer Join

  Alt 27. Dez 2009, 19:39
So und jetzt nochmal, wie man das normalerweise lösen würde...
SQL-Code:
SELECT *
FROM tabelle1 a
WHERE NOT EXISTS (SELECT *
                  FROM tabelle2
                  WHERE FK = a.PK)
  Mit Zitat antworten Zitat