2
Reply

DB2 : What is the need of Identity Column?

Deepak Verma

Deepak Verma

Apr 26, 2011
3.6k
0

    Identity column allows the insertion of incremental values in a particular column whenever a row is inserted in the table. We can define the initial value and the seed value as well when declaring an identity column.

    Renu Agarwal
    August 12, 2016
    0

    When a new row is created in a table with Identity Column, the Identity Column value for inserted row is generated by the system automatically. A table can have only one identity column.

    To know how it be possible refer this link :

    Click Here

    Deepak Verma
    April 26, 2011
    0