Ginge es nicht auch so?
SQL-Code:
DELETE FROM
TABELLE1
WHERE
NOT EXISTS(
SELECT
*
FROM
TABELLE2
WHERE
TABELLE2.PARAM1 = TABELLE1.PARAM1
)
Danke für diesen Tip. Ich denke, dass das auch das gewünschte Ergebnis liefern würde. Diese Variante ist auch schon mal doppelt so schnell wie meine ursprüngliche, allerdings halt immer noch deutlich langsamer als mit Flamerobin.