Is it possible to write an "insert into" statement for a single column table?
Here's the caveat...
If you ha开发者_Go百科ve a table that has a single column and that column happens to be an identity
column with identity_insert
turned OFF, is it still possible to write a T-SQL insert statement for this table?
sure
use insert TableName default values
example
create table Test (id int identity not null)
insert Test default values
select * from Test
精彩评论