hi
ich hab en
db in dieser form: id, ParentID, Value
daraus erstelle ich so "Bäume"
nun möchte ich alle einträge löschen, wo es die Zahl, die in ParentID drinsteht nicht mehr in der id spalte gibt.
geht das so?
DELETE FROM all WHERE (SELECT Count(ID) FROM all WHERE ID = ParentID) = 0
und nochwas:
wenn ich zb 5 gleiche (vom design her) tabellen hab, wie kann ich die zusammenführen?
so?
INSERT INTO all VALUES (SELECT * FROM tbl1, tbl2, tbl3, tbl4)
mfg gereon