Würde das in etwa so übersetzen:
Statt
SQL-Code:
SELECT *
FROM Tabelle1
WHERE NOT exists(
SELECT true
FROM Tabelle2
WHERE Tabelle1.CoNummer = Tabelle2.CoNummer
AND Tabelle1.Status = Tabelle2.Status
LIMIT 1
)
könnte dashier gehen:
SQL-Code:
SELECT *
FROM Tabelle1
WHERE NOT exists(
SELECT first 1 1
FROM Tabelle2
WHERE Tabelle1.CoNummer = Tabelle2.CoNummer
AND Tabelle1.Status = Tabelle2.Status
)
Syntaktisch geht das so unter FireBird (grade mal ausprobiert), ob's auch sinnvolle Ergebnisse liefert, kann ich nicht sagen, first 1 1 sieht jedenfalls seltsam aus