hi guys! i have a problem regarding the queries i coded. my first query is to display the category name, description and maxscore:
SELECT c.cat_name, g.maxscore, g.description
FROM grp_performance
INNER JOIN category c
ON g.cat_id = c.cat_id
the problem is, i don't know how to delete the row in the gp_performance table without deleting the records in the category table. i tried using innerjoin but still it doesn't work. this is part of our thesis project and i really need some help! :(