Unterstützt SQLite das Löschen von von?

Dies ist eine gültige Syntax in T-SQL von Microsoft SQL Server, jedoch nicht in SQLite. Gibt es eine alternative Syntax, die in SQLite dasselbe bewirkt?

DELETE FROM something
FROM something
INNER JOIN combinations ON something.field1=combinations.field1
AND something.field2=combinations.field2
--optionally more criteria and/or more joins
WHERE combinations.field3=1234
--or anything really, just to show some criteria could be applied here also

Antworten auf die Frage(2)

Ihre Antwort auf die Frage