Hi there.
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?
thanks!