I have 2 tables one called "REVIEW" and the other "REVIEW_DESCRIPTION"
If I do a join to get all the data from both:
SELECT *
FROM reviews
INNER JOIN reviews_description
ON reviews.reviews_id=reviews_description.reviews_id
WHERE reviews.customers_id = 54183
Based on this I would like to delete rows in both tables that match this criteria in one shot, any tips?
Yes, MySQL supports deletions from more than one table in a single statement:
First multi-table syntax example: