Hallo #,
folgender Code erzeugt einen Fehler (join wird angemeckert)
SQL-Code:
Delete From DataFoxInput_Details1
Join DataFoxInput on DataFoxInput.Id=DataFoxInput_Details1.DataFoxInputId
Where
(DataFoxInput.TheDate=:CheckDate) And
(DataFoxInput_Details1.Flag Is Null) And
(DataFoxInput_Details1.CardNo Is Null)
Ich versuche einen Detail-Eintrag (Tabelle: DataFoxInput_Details1) eines bestimmten Tages
zu löschen, der Tag steht aber nur in der Mastertabelle (DataFoxInput.TheDate).
Bekomme ich das ohne "where in " hin ?
Heiko