Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: What will be the output of the following?

    Create Table MyTable

    (

    mainkey int not null identity (-1,-1)

    )

    GO

    insert into MyTable default values

    insert into MyTable default values

    insert into MyTable default values

    Select * from MyTable

    == > ok in...

  • RE: What will be the output of the following?

    in identity (-1,1) no first paramaeter shows number start from and second parameter shows number increment by mentioned. in that case "mainkey" will start from -1 and increased by 1....

Viewing 2 posts - 1 through 2 (of 2 total)