18.1.10

SQL Query challenge

Hi Readers,

Have you tried inserting a record in the table like below,

create table Venkattemp (id int identity(1,1))

Any inputs????????

Thanks and Regards,
Venkatesan Prabu .J

2 comments:

  1. It should be

    Insert into Venkattemp default values

    http://sqlblogcasts.com/blogs/madhivanan

    ReplyDelete
  2. Hi Venkat
    This is a good question. The Answer is

    insert into Venkattemp default values;

    Thanks -- Vijaya Kadiyala
    www.DotNetVJ.com

    ReplyDelete