i have two mysql tables
tableA
colA1 colA2
1 whatever
2 whatever
3 whatever
4 whatever
5 whatever
6 whatever
second table is basically derived from tableA but has some rows deleted
tableB
colB1 colB2
1 whatever
2 whatever
4 whatever
6 whatever
how can i write an query to obtain the table of missing rows from the above two tables
i.e
colC1 colC2
3 whatever
5 whatever