PHP MySQL DELETE из нескольких таблиц

DELETE * 
FROM Users, category 
WHERE Users.u_id = ? 
AND category.c_id = category.u_id;
Rht