I need to delete rows from multiple mysql tables (3). this is my query it show a error but I create this query according to the examples and tutorials.
DELETE FROM customers, orders, order_detail USING customers   
INNER JOIN orders INNER JOIN order_detail   
WHERE customers.id = orders.customers_id   
  AND orders.id = order_detail.orders_id   
  AND customers.id IN (66,67,68,90,85,81,80,78,76,74,71,118,113,110,149)


 
    