sql server - how to export records/data from one database table to another database table? -


how export records 1 database table , import database table? (same table structure).

if table have exact same structure, , no autogenerated fields can use:

insert destinationtable   select * sourcetable 

you can use the

select *    destinationtable    sourcetable 

syntax, create , fill destination table on fly.


Comments

Popular posts from this blog

c# - SharpSVN - How to get the previous revision? -

c++ - Is it possible to compile a VST on linux? -

url - Querystring manipulation of email Address in PHP -