Einzelnen Beitrag anzeigen

omata

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

Re: SQL + 2 Tabellen vereinen und alle Einträge ausgeben

  Alt 18. Jan 2009, 16:45
SQL-Code:
SELECT t1.name, t2.hotfix
FROM tabelle1 t1
LEFT JOIN tabelle2 t2
  ON t1.id = t2.sid
     AND t2.hotfix = 'KB222222'
  Mit Zitat antworten Zitat