Hi,
Hallo!
mysql_query("DELETE FROM news, authors");
in http://www.mysql.com/documentation/mysql/bychapter/manual_Reference.html#DELETE erfährst Du, dass in der Syntaxdefinition "FROM table_name" steht, nicht "FROM table_references" o.ä. Beachte den Unterschied zwischen Singular und Plural.
Cheatah
Bitte, bevor du wieder etwas schreibst lies den Rest auf mysql.com.
DELETE FROM t1,t2 USING t1,t2,t3 WHERE t1.id=t2.id AND t2.id=t3.id
FROM t1,t2 <--- Das sind 2 tables
Danke trotzdem.
Jürgen