SELECT
Tab.name AS TableName,
Obj.name AS ConstraintName
FROM
sys.objects Obj
INNER JOIN sys.tables Tab ON Obj.parent_object_id = Tab.object_id
WHERE
Obj.type = 'PK'
AND Obj.name = 'PK_MD_MatCaseBox'
Tab.name AS TableName,
Obj.name AS ConstraintName
FROM
sys.objects Obj
INNER JOIN sys.tables Tab ON Obj.parent_object_id = Tab.object_id
WHERE
Obj.type = 'PK'
AND Obj.name = 'PK_MD_MatCaseBox'