surrogate key
surrogate key
(database)A surrogate key is frequently a sequential number (e.g. aSybase "identity column") but doesn't have to be. Havingthe key independent of all other columns insulates thedatabase relationships from changes in data values or databasedesign and guarantees uniqueness.
Some database designers use surrogate keys religiouslyregardless of the suitability of other candidate keys.However, if a good key already exists, the addition of asurrogate key will merely slow down access, particularly if itis indexed.
Compare: intelligent key.