Database Columns - Get
Získání sloupce databáze
GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/schemas/{schemaName}/tables/{tableName}/columns/{columnName}?api-version=2021-11-01
Parametry identifikátoru URI
Name | V | Vyžadováno | Typ | Description |
---|---|---|---|---|
column
|
path | True |
string |
Název sloupce |
database
|
path | True |
string |
Název databáze. |
resource
|
path | True |
string |
Název skupiny prostředků, která prostředek obsahuje. Tuto hodnotu můžete získat z rozhraní API Resource Manager Azure nebo z portálu. |
schema
|
path | True |
string |
Název schématu. |
server
|
path | True |
string |
Název serveru. |
subscription
|
path | True |
string |
ID předplatného, které identifikuje předplatné Azure. |
table
|
path | True |
string |
Název tabulky. |
api-version
|
query | True |
string |
Verze rozhraní API, která se má použít pro požadavek. |
Odpovědi
Name | Typ | Description |
---|---|---|
200 OK |
Sloupec databáze se úspěšně načetl. |
|
Other Status Codes |
Chybové odpovědi: ***
|
Příklady
Get database column
Ukázkový požadavek
Ukázková odpověď
{
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/myRG/providers/Microsoft.Sql/servers/serverName/databases/myDatabase/schemas/dbo/tables/table1/columns/column1",
"name": "column1",
"type": "Microsoft.Sql/servers/databases/schemas/tables/columns",
"properties": {
"columnType": "bit",
"temporalType": "SystemVersionedTemporalTable",
"memoryOptimized": false,
"isComputed": false
}
}
Definice
Name | Description |
---|---|
Column |
Datový typ sloupce |
Database |
Prostředek sloupce databáze. |
Table |
Dočasný typ tabulky. |
ColumnDataType
Datový typ sloupce
Name | Typ | Description |
---|---|---|
bigint |
string |
|
binary |
string |
|
bit |
string |
|
char |
string |
|
date |
string |
|
datetime |
string |
|
datetime2 |
string |
|
datetimeoffset |
string |
|
decimal |
string |
|
float |
string |
|
geography |
string |
|
geometry |
string |
|
hierarchyid |
string |
|
image |
string |
|
int |
string |
|
money |
string |
|
nchar |
string |
|
ntext |
string |
|
numeric |
string |
|
nvarchar |
string |
|
real |
string |
|
smalldatetime |
string |
|
smallint |
string |
|
smallmoney |
string |
|
sql_variant |
string |
|
sysname |
string |
|
text |
string |
|
time |
string |
|
timestamp |
string |
|
tinyint |
string |
|
uniqueidentifier |
string |
|
varbinary |
string |
|
varchar |
string |
|
xml |
string |
DatabaseColumn
Prostředek sloupce databáze.
Name | Typ | Description |
---|---|---|
id |
string |
ID prostředku. |
name |
string |
Název prostředku. |
properties.columnType |
Datový typ sloupce |
|
properties.isComputed |
boolean |
Určuje, jestli se sloupec vypočítá nebo ne. |
properties.memoryOptimized |
boolean |
Určuje, jestli sloupec patří do tabulky optimalizované pro paměť. |
properties.temporalType |
Dočasný typ tabulky. |
|
type |
string |
Typ prostředku. |
TableTemporalType
Dočasný typ tabulky.
Name | Typ | Description |
---|---|---|
HistoryTable |
string |
|
NonTemporalTable |
string |
|
SystemVersionedTemporalTable |
string |