would like to seek your help for deleting rows from multiple tables.
Columns of Table A) indexnum people title
Columns of Table B) indexnum jobtitle status
what I would like to do is delete any rows from two tables, that has a certain index number, which would be accomplished by,
DELETE A WHERE num='1';
DELETE B WHERE num='1';
Can I do this in a single SQL?
I have looked up in other Q&As with recommendations to use INNER JOIN but wasn't able to make up one for my own...