L
LionFast
Hi, the following query would select all rows where done=true and copy it to
the TaskDone table. But how do I also remove it from the Task table after
the copy procedure???? Give me REMOVE codes. Thanks
INSERT INTO TaskDone
SELECT *
FROM Task
WHERE Done=True;
the TaskDone table. But how do I also remove it from the Task table after
the copy procedure???? Give me REMOVE codes. Thanks
INSERT INTO TaskDone
SELECT *
FROM Task
WHERE Done=True;