Peristiwa
31 Mac, 11 PTG - 2 Apr, 11 PTG
Acara pembelajaran SQL, Fabric dan Power BI terbesar. 31 Mac - 2 April. Gunakan kod FABINSIDER untuk menjimatkan $400.
Daftar hari iniPelayar ini tidak lagi disokong.
Naik taraf kepada Microsoft Edge untuk memanfaatkan ciri, kemas kini keselamatan dan sokongan teknikal yang terkini.
Applies to:
SQL Server
Azure SQL Managed Instance
Returns information about the index key. Returns NULL for XML indexes.
Penting
This feature will be removed in a future version of SQL Server. Avoid using this feature in new development work, and plan to modify applications that currently use this feature. Instead, use sys.index_columns (Transact-SQL).
Transact-SQL syntax conventions
INDEXKEY_PROPERTY ( object_ID ,index_ID ,key_ID ,property )
object_ID
Is the object identification number of the table or indexed view. object_ID is int.
index_ID
Is the index identification number. index_ID is int.
key_ID
Is the index key column position. key_ID is int.
property
Is the name of the property for which information will be returned. property is a character string and can be one of the following values.
Value | Description |
---|---|
ColumnId | Column ID at the key_ID position of the index. |
IsDescending | Order in which the index column is stored. 1 = Descending 0 = Ascending |
int
Returns NULL on error or if a caller does not have permission to view the object.
A user can only view the metadata of securables that the user owns or on which the user has been granted permission. This means that metadata-emitting, built-in functions such as INDEXKEY_PROPERTY may return NULL if the user does not have any permission on the object. For more information, see Metadata Visibility Configuration.
In the following example, both properties are returned for index ID 1
, key column 1
in the Production.Location
table.
USE AdventureWorks2022;
GO
SELECT
INDEXKEY_PROPERTY(OBJECT_ID('Production.Location', 'U'),
1,1,'ColumnId') AS [Column ID],
INDEXKEY_PROPERTY(OBJECT_ID('Production.Location', 'U'),
1,1,'IsDescending') AS [Asc or Desc order];
Here is the result set:
Column ID Asc or Desc order
----------- -----------------
1 0
(1 row(s) affected)
INDEX_COL (Transact-SQL)
INDEXPROPERTY (Transact-SQL)
sys.objects (Transact-SQL)
sys.indexes (Transact-SQL)
sys.index_columns (Transact-SQL)
Peristiwa
31 Mac, 11 PTG - 2 Apr, 11 PTG
Acara pembelajaran SQL, Fabric dan Power BI terbesar. 31 Mac - 2 April. Gunakan kod FABINSIDER untuk menjimatkan $400.
Daftar hari ini