vote up 1 vote down star

I want to do something like

insert into my table (select * from anothertable where id < 5)

What is the correct MSSQL syntax?

Thanks!

flag

4 Answers

vote up 3 vote down check

Is this what you're looking for?

INSERT INTO MyTable
SELECT * FROM AnotherTable
WHERE AnotherTable.ID < 5
link|flag
Great. As others have mentioned, you want to be sure that the columns you're selecting from AnotherTable match the columns in MyTable. – Ed Altorfer Oct 21 '08 at 19:52
vote up 3 vote down

That syntax looks correct, but you the fields have to match exactly otherwise it won't work.

You can specify the fields eg:

INSERT INTO myTable(COL1, COL2, COL3) 
SELECT COL1, COL2, COL3 FROM anotherTable where anotherTable.id < 5
link|flag
vote up 0 vote down

Insert Into MyTable ( Col1, Col2, Col3 ) Select Col1, Col2, Col3 From AnotherTable Where ID < 5

link|flag
vote up 0 vote down

You can also do

select *
into MyTable
from AnotherTable
where ID < 5

which will create MyTable with the required columns, as well as fill the data in.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.