hey guys,
i have a query wherein one table has the same id as the other using inner join..
SELECT c.cat_name, g.maxscore, g.description
FROM grp_performance
INNER JOIN category
ON g.cat_id = c.cat_id
Is it possible to use inner join when deleting a row? like..
DELETE FROM grp_performance
INNER JOIN category
ON g.cat_id = c.cat_id