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
Post a Comment