To create a table from another table SQL SERVER database with all data, following example can be used:
"Select * into NewNanoTable from OldNanoTable"
Following is also used:
"Insert into TABLE2
SELECT *
FROM TABLE1"
"Select * into NewNanoTable from OldNanoTable"
Following is also used:
"Insert into TABLE2
SELECT *
FROM TABLE1"
No comments:
Post a Comment