About 75,100 results
Open links in new tab
  1. SQL query to find Primary Key of a table? - Stack Overflow

    Sep 12, 2012 · The following query gives the list of all the primary keys in the given database. SELECT DISTINCT TABLE_NAME ,column_name FROM INFORMATION_SCHEMA.key_column_usage WHERE TABLE_SCHEMA IN ('*your_db_name*');

  2. 11 Ways to Retrieve a Primary Key in SQL Server (T-SQL Examples)

    Aug 11, 2019 · Retrieving all primary keys from a database (or even just the primary key for a given table) is a case in point. This article presents eleven different approaches to retrieving primary key information in SQL Server.

  3. How To Get The Primary Key Of A Table In SQL Server

    Nov 18, 2024 · How To Get The Primary Key Of A Table In SQL Server. Let us dive deeply into all the approaches individually. Approach-1: Using INFORMATION_SCHEMA.TABLE_CONSTRAINTS. We can execute the below SQL query to retrieve the primary key column details of the Order table.

  4. Finding primary keys and missing primary keys in SQL Server

    Jun 21, 2024 · Here are scripts you can use to find all tables in a database that have a primary key. SQL Server 2005 / 2008 / 2008 R2 / 2012 / 2014 / 2016 / 2017 / 2019 / 2022 SELECT c.name as SchemaName, b.name as TableName, a.name as PKname FROM sys.key_constraints a INNER JOIN sys.tables b ON a.parent_object_id = b.OBJECT_ID INNER JOIN sys.schemas c ON a ...

  5. SQL PRIMARY KEY Constraint - W3Schools

    SQL PRIMARY KEY Constraint. The PRIMARY KEY constraint uniquely identifies each record in a table. Primary keys must contain UNIQUE values, and cannot contain NULL values. A table can have only ONE primary key; and in the table, this primary key can consist of single or multiple columns (fields).

  6. Retrieving Table Primary Key With SQL Queries - Baeldung

    Aug 28, 2024 · Learn how to retrieve a table's primary key with SQL queries in MySQL, PostgreSQL, and SQL Server.

  7. SQL Query to Check or Find the Column Name Which Is Primary Key

    Apr 8, 2021 · To find PRIMARY KEY of any table : SELECT K.COLUMN_NAME FROM. INFORMATION_SCHEMA.TABLE_CONSTRAINTS T. JOIN INFORMATION_SCHEMA.KEY_COLUMN_USAGE K. ON K.CONSTRAINT_NAME=T.CONSTRAINT_NAME. WHERE K.TABLE_NAME= ‘YOUR-TABLE-NAME’. AND K.TABLE_SCHEMA= ‘YOUR-DATABASE_NAME’. AND …

  8. SQL Server: Get table primary key using sql query

    Oct 14, 2010 · I want to get a particular table's primary key using SQL query for SQL Server database. In MySQL I am using following query to get table primary key: SHOW KEYS FROM tablename WHERE Key_name = 'PRIMARY'

  9. How to check if a primary key exists - T-SQL Tutorial

    In SQL Server, you can check if a primary key exists in a table using T-SQL by querying the system catalog views. The system catalog views contain metadata information about the database objects, including tables and their constraints.

  10. 5 Ways to Find a Table’s Primary Key in MySQL - Database.Guide

    Below are five ways to get the primary key column/s from an existing table in MySQL. In MySQL we can use the SHOW KEYS statement to get the primary key for a given table: Example result: Primary keys always have a Key_name of PRIMARY, and so that’s why I filtered by that criteria.

  11. Some results have been removed
Refresh