miraclemaker
Programmer
Hi there. Is there some kind of query that will allow me to move / export some rows from one table to another in the same database?
Thanks
Thanks
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
insert
into table2
( foo2
, bar2
, qux2
)
select foo
, bar
, qux
from table1
where pk1 in ( 1, 3, 5, 937 )
delete
from table1
where pk1 in ( 1, 3, 5, 937 )