Definitions for "Identity Column" Add To Word List
Login or Register  | Word Lists | Search History

Keywords: Increment, Column, Typo, Auto, Rdbms
a column that stores numbers that increment by one with each insertion
Helpful?           0
an acceptable candidate for a primary key, especially if the natural key is composed of several columns and thus very wide
Helpful?           0
an auto-incremented number that is assigned automatically to every new row inserted into the table, hence preventing any user typo and increasing the efficiency and speed of an indexed table
Helpful?           0
an exact-numeric column (e
Helpful?           0
a special column in SQL Server that can automatically take on values when an insert operation is done on the table
Helpful?           0
An Identity column is a column ( also known as a field ) in a database table that (1) uniquely identifies every row in the table, and (2) is made up of values generated by the database. This is much like an Auto Number field in Microsoft Access or a sequence in Oracle. Because the concept is so important in database science, all RDBMS systems implement some type of generated key, although each has its own terminology.
Helpful?           0