hessodreamy
Programmer
Is there a way to copy some data from 1 table to another in a insert into...select statement AND remove the affected data from the original table?
ie combining these 2 statements:
ie combining these 2 statements:
Code:
insert into superCat_subCat (sCatId, subCatId) select from cat_subCat where catId = 327
delete from cat_subCat where catId = 327