using tsql, sqlserver 2005.
I would like insert records from table table2 into an existing table table1 as easily as I could enter it into a new table table1 using:
select facilabbr, unitname, sortnum into table1 from table2
Any ideas?
|
using tsql, sqlserver 2005. I would like insert records from table table2 into an existing table table1 as easily as I could enter it into a new table table1 using:
Any ideas? |
||||
|
|
|
Assuming you just want to append and that the columns match up:
If you want to replace and the columns still match:
If you want to replace and the columns do not match:
|
|||||
|
should work. |
||||
|
|