Here's the caveat...
If you have 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
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With