Archiving

itmagr

Member
Joined
Feb 8, 2008
Messages
6
Programming Experience
3-5
What's the easiest way to move records from one table to another, both tables being identical ?
 
What's the easiest way to move records from one table to another, both tables being identical ?

in oracle:
InSERT INTO dest SELECT * FROM src

in sqlserver:
SELECT * INTO dest FROM src


Next time you ask a question, please at least say what DB youre using?
 
Back
Top