SQL Composite Key

A composite key is a combination of two or more columns in a table that can be used to uniquely identify each row in the table when the columns are combined uniqueness is guaranteed, but when it taken individually it does not guarantee uniqueness.

Sometimes more than one attributes are needed to uniquely identify an entity. A primary key that is made by the combination of more than one attribute is known as a composite key.

In other words we can say that:

Composite key is a key which is the combination of more than one field or column of a given table. It may be a candidate key or primary key.

Columns that make up the composite key can be of different data types.

SQL Syntax to specify composite key:

In all cases composite key created consist of COLUMN1 and COLUMN2.

MySQL:

MySQL:

Oracle:

SQL Server:

Let's see the Syntax for the select top statement:

Next TopicUnique Key in SQL




Contact US

Email:[email protected]

Composite Key
10/30