I want to do something like
insert into my table (select * from anothertable where id < 5)
What is the correct MSSQL syntax?
Thanks!
|
|
I want to do something like
What is the correct MSSQL syntax? Thanks!
|
|||
|
|
|
|
Is this what you're looking for?
|
||
|
|
|
That syntax looks correct, but you the fields have to match exactly otherwise it won't work. You can specify the fields eg:
|
||
|
|
|
|
|
||
|
|
|
|
You can also do
which will create MyTable with the required columns, as well as fill the data in. |
||
|
|