multiple-table delete syntax in mysql is:
either
DELETE table1, table2, ..., tableN
FROM [JOIN statements here]
WHERE ...
or
DELETE
FROM table1, table2, ..., tableN
USING [JOIN statements here]
WHERE ...
more info, if you need it, is in chapter 13.2.1 of mysql
reference manual
hth
Azadi Saryev
Sabai-dee.com
http://www.sabai-dee.com/