SQL Server question. When doing

INSERT INTO T1 SELECT (C1, C2) FROM T2

I don't want to specify column names of T1 because they are the same as in T2

Is it possible to do so?

Currently I'm getting error

Msg 213, Level 16, State 1, Line 1

Column name or number of supplied values does not match table definition.

link|improve this question

feedback

5 Answers

up vote 0 down vote accepted

If T1 and T2 match exactly you have two choices. You can either select all columns from T2 for the insert into T1, or you can provide a column list to the insert statement.

Even though when you do a select MSSQL provides column headers that information is not used by an insert statement to match columns up.

link|improve this answer
feedback

Yes, you can omit the field names for the table that you insert to, and you can use select * to get all fields from the table, but I would not recommend this approach.

If you omit the field name the fields are matched by position, not by name. If the fields are not in the exact same order, they will be mixed up. Generally you should avoid relying on the exact layout of the tables, to minimise the risk that changes in the tables breaks the queries.

link|improve this answer
Is there any way to insert all columns except the identity key without specifying all column names? Tables I work with contain dozens of columns and listing them every time is really boring. – Konstantin Spirin Nov 24 '09 at 6:43
Maybe you could create a view with all the columns you want and select * from it. – cindi Nov 24 '09 at 8:51
@Konstantin: No, there is no simple way to specify all fields except the identity field. It's all or nothing. – Guffa Nov 24 '09 at 9:49
feedback

Always use explicit columns both in the INSERT and in the SELECT projection. Even if you don't want to, you should:

INSERT INTO T1 (C1, c2)
SELECT C1, C2 FROM T2
link|improve this answer
2  
That's code duplication I want to get rid of in favour of convention-driven approach (columns with same names should just map to each other) – Konstantin Spirin Nov 24 '09 at 6:44
2  
No, that is good SQL practice. – Remus Rusanu Nov 24 '09 at 7:01
Code duplication should not be good practice. – Konstantin Spirin Nov 24 '09 at 8:20
2  
SQL is generally a verbose language. For Example the group by clause is redundant in aggregatations, INTO is redundant. I think you just have to accept that. – cindi Nov 24 '09 at 8:58
This is a good practice because database systems cannot track dependencies in client code. One can add a column to T2, or it can reorganize T2 to change column order, or it can remove a column, all operations resulting in breaking your code. – Remus Rusanu Nov 24 '09 at 16:23
feedback

Why not simply

INSERT INTO t1
SELECT * FROM T2
link|improve this answer
I need to skip one column (the one which is identity primary key) – Konstantin Spirin Nov 24 '09 at 6:41
feedback

If you're worried about column names you can always alias them:

INSERT INTO T1 (C1, c2)
SELECT C1 AS C1_ALIAS, C2 AS C2_ALIAS FROM T2

Or, more succinctly:

INSERT INTO T1 (C1, c2)
SELECT C1 C1_ALIAS, C2 C2_ALIAS FROM T2

Though I can't really think why one would want to in such a simple example

link|improve this answer
Is it possible to have alias for a number of columns? For example, insert into T1 ALL_COLUMNS_ALIAS select (C1, C2, C3) as ALL_COLUMNS_ALIAS from T2 ? – Konstantin Spirin Nov 24 '09 at 6:46
feedback

Your Answer

 
or
required, but never shown

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