Hi!
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.