Surrogate Key in DBMS

A surrogate key in DBMS is the key or can say a unique identifier that uniquely identifies an object or an entity in their respective fields. It is the unique identifier in a database.

Here, in this section, we will learn about the Surrogate key, and we will also look at its implementation by looking at some examples.

What is a Surrogate Key

A surrogate key is a key with virtual or no actual reason, and it is used for representing the existence for data analysis. Thus, a surrogate key is used for representing existence for data analysis. It is the unique identifier in a database. It represents an outside entity as a database object but is not visible to the user and application. A surrogate key is also known by various other names, which are pseudo key, technical key, synthetic key, arbitrary unique identifier, entity identifier and database sequence number.

Difference between Surrogate Key and Primary Key

The difference between both keys depends on the type of database, i.e., whether it is a current database or a temporal database. It is so because a current database stores only the current valid data, and there exists a one-to-one relationship between both the primary key in the database and the surrogate key in the modeled or outside world. So, in the case of the current database, the surrogate key can be used as the primary key, in respect to the surrogate key only. In the case of a temporal database, there exist many-to-many relationships between surrogate and primary keys. So, for several objects present in a database can correspond to one surrogate key. That's why we cannot use the surrogate key as a primary key for the temporal database and need another attribute with the surrogate key in order to uniquely identify each object in a database.

Implementing Surrogate Key

Let's implement an example to understand the working and role of a Surrogate key in DBMS:

Consider an example of Tracking_System, where we have the following attributes:

Key: An attribute holding the key for each tracking id.

Track_id: An attribute holding the tracking id of the item.

Track_item: An attribute holding the name of the item that is being tracked.

Track_loc: An attribute holding the location of the tracking item.

The below diagram represents the above described Tracking_system table:

Surrogate Key in DBMS

Point to be noted:

From the above table, we can see that the Key attribute of the Tracking_System table is the Surrogate key because the value of the Key column is different for different locations and id of the item.

There can be other possible examples of the Surrogate key, which are:

  • System date & time stamp
  • Random alphanumeric string and many more.

Next TopicUnique Key in DBMS




Contact US

Email:[email protected]

Surrogate Key in DBMS
10/30