"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How to Retrieve Primary Key Column Names from a SQL Server Table?

How to Retrieve Primary Key Column Names from a SQL Server Table?

Posted on 2025-02-17
Browse:521

How to Retrieve Primary Key Column Names from a SQL Server Table?

Get primary key information from SQL Server table

Accessing primary key information is critical for data integrity and efficient query execution when processing SQL Server tables. This article discusses how to use Transact-SQL (T-SQL) to list primary keys for SQL Server tables.

Query listing primary key

]

To get the primary key information of a specific table, execute the following query:

SELECT Col.Column_Name
FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS Tab,
     INFORMATION_SCHEMA.CONSTRAINT_COLUMN_USAGE Col
WHERE Col.Constraint_Name = Tab.Constraint_Name
  AND Col.Table_Name = Tab.Table_Name
  AND Tab.Constraint_Type = 'PRIMARY KEY'
  AND Col.Table_Name = ''

Query instructions:

  • INFORMATION_SCHEMA.TABLE_CONSTRAINTS Provides information about constraints on tables, including primary keys.
  • INFORMATION_SCHEMA.CONSTRAINT_COLUMN_USAGE Link the constraint to its applicable column.
  • Tab.Constraint_Type = 'PRIMARY KEY' Filter the result to include only primary key constraints.
  • Replace with the table name of which you want to list the primary key.

After this query is executed, you will retrieve a list of column names specified as part of the primary key in the specified table.

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3