vote up 0 vote down star

SQL Server (2005/2008)

Each of the below statements have the same result. Does anyone know if one outperforms the other?

insert into SOMETABLE 
  values ('FieldOneValue','FieldTwoValue',3,4.55,'10/10/2008 16:42:00.000')

insert into SOMETABLE 
  select 'FieldOneValue','FieldTwoValue',3,4.55,'10/10/2008 16:42:00.000'

insert into SOMETALBE
  Select
    Field1 = 'FieldOneValue',
    Field2 = 'FieldTwoValue',
    Field3 = 3,
    Field4 = 4.55,
    Field5 = '10/10/2008 16:42:00.000'

Assuming of course that the data types match the table appropriately...

flag

6 Answers

vote up 5 vote down check

I just tested this.

5 million iterations of both approaches on two sets of hardware, one a server with 16GB RAM, one a notebook with 1GB.

Result: They appear to be the same.

The query plans for these are the same, and the performance differential is statistically insignificant.

link|flag
vote up 0 vote down

For SQL Server, just use this pattern

INSERT INTO TableName (fieldList) SELECT (valueList/columnList) [FROM and so on]

This is the only insert pattern you'll ever need. It does everything. Do specify the fieldlist to protect your statement from future table changes (where optional columns are added).

There are some minor nuances to using INSERT INTO VALUES, which I don't remember because I don't have to.

link|flag
The syntax of SELECT with no FROM clause is not standard SQL. Several brands do support it, but not all. – Bill Karwin Oct 11 '08 at 1:07
vote up -1 vote down

ignore this comment, its wrong. sorry about that :(

I know you can't use INSERT VALUES() when you're entering more than one row.

INSERT INTO Table SELECT 1, 2, 3, (SELECT 4 FROM Table2 WHERE columnA = columnB)

link|flag
Is this true of SQL server? other RDBMS let you do this: INSERT INTO table values ('a1','a2'), ('b1','b2'); – Draemon Oct 10 '08 at 22:17
...MySQL, for example. – Rob Oct 10 '08 at 22:22
@Miles: Incorrect. Standard SQL, and most implementations, support INSERT with more than one row. – Bill Karwin Oct 11 '08 at 1:06
my bad, i thought i had the correct syntax when I tried before and I couldn't get it to work... :*( – Miles Oct 14 '08 at 15:15
vote up 2 vote down

I would suspect that if there were a performance difference, it would be in favour of the former, although I doubt there is one.

Nevertheless, this is one of those cases where opting for the clearer version (i.e. with VALUES) provides a readability and maintainability benefit which outweighs the likely negligible performance impact. If you're specifying all the values, then stick to the usual convention, in case someone else reads the code, which at first glance might seem to be doing an INSERT...SELECT from another table, which is a misleading appearance.

link|flag
I'm not sure I agree. Let's say I'm doing a Insert from a c# application. This query is going to be used over and over with the values plopped into it. For someone maintaining my code, the verbose third version is probably easier to understand than the Valuse() version. – theo Oct 11 '08 at 15:18
theo: You're right, of course; the point I was making was, stick to whatever's cleanest, clearest and most readable, which might vary from situation to situation. – Rob Oct 27 '08 at 3:13
vote up 9 vote down

i think, based on this question, you are to the point of premature optimization. i'd stick to the standard insert () values () if you are just inserting 1 record and let the Sql Server team make it the most performant.

link|flag
I agree that this is premature optimization. There are so many other performance issues that are more important. However, if the issue is bulk loading of lots of rows, it's often better to use a vendor-specific feature like MySQL's LOAD DATA INFILE because they perform much better. – Bill Karwin Oct 11 '08 at 1:09
agree, sql server has a bulk insert command as well. – Darren Kopp Oct 11 '08 at 1:20
I'm actually not prematurely optimizing. I'm not optimizing at all, I was just curious on a base level about the performance, which appears a negligible difference in all cases. – theo Oct 11 '08 at 15:16
exactly, which is pre-mature optimization. – Darren Kopp Oct 11 '08 at 19:28
vote up 0 vote down

It looks like you're just mimicking

Insert into SOMETABLE ( SELECT * FROM SOMEOTHERTABLE )

link|flag

Your Answer

Get an OpenID
or

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