Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Select schema_Name(schema_id) As SchemaName,
object_name(indexes.object_id) As TableName,
Columns.name As ColumnName,
index_columns.Key_ordinal
From sys.indexes
Inner Join sys.index_columns
On indexes.object_id = index_columns.object_id
And indexes.index_id = index_columns.index_id
Inner Join sys.columns
On index_columns.object_id = columns.object_id
and index_columns.column_id = columns.column_id
Inner Join sys.all_objects
On indexes.object_id = all_objects.object_id
Where indexes.is_primary_key = 1
Order By schema_name(schema_id),
object_name(indexes.object_id),
index_columns.key_ordinal