I need to delete sme data frm a tableA and put that data in other tableB..data in tableA must be deletd..both can be done in same db2 query?.
delete data frm tableA n put tat in tableB
Collapse
X
-
No there isn't one query that does it. Why do you need it to be one query? Rather select into a cursor and then use load from cursor for the target table. See here for more details http://www.ibm.com/developerworks/da...m-0901fechner/
Comment