+1 vote
in Sql by

what are the limitations of IDENTITY column?

2 Answers

0 votes
by

The limitations of the IDENTITY column is that column values cannot be updated once generated. Also, it may require to specify this column as a PRIMARY KEY, as such, there is a possibility of duplication of values within a table. Identity property is applicable for integer based column only.

0 votes
by

The limitations of the IDENTITY column is that column values cannot be updated once generated. Also, it may require to specify this column as a PRIMARY KEY, as such, there is a possibility of duplication of values within a table. Identity property is applicable for integer based column only.

Related questions

+1 vote
asked May 31, 2019 in NoSQL by aaravkhandelwal.2018
0 votes
asked Jun 15, 2023 in Sql by Robin
0 votes
asked Jun 15, 2023 in Sql by Robin
...