Answers for "get foreign keys of table sql"

SQL
1

sql server find tables referenced foreign key

EXEC sp_fkeys 'TableName'
Posted by: Guest on April-17-2020
0

sql server find all foreign keys that reference a column

SELECT 
   OBJECT_NAME(f.parent_object_id) TableName,
   COL_NAME(fc.parent_object_id,fc.parent_column_id) ColName
FROM 
   sys.foreign_keys AS f
INNER JOIN 
   sys.foreign_key_columns AS fc 
      ON f.OBJECT_ID = fc.constraint_object_id
INNER JOIN 
   sys.tables t 
      ON t.OBJECT_ID = fc.referenced_object_id
WHERE 
   OBJECT_NAME (f.referenced_object_id) = 'YourTableName'
Posted by: Guest on August-06-2020
0

how to check foreign key constraint in sql

sp_help 'TableName'
Posted by: Guest on May-26-2021

Code answers related to "get foreign keys of table sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language