Database Columns - Get
Pobieranie kolumny bazy danych
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 identyfikatora URI
Nazwa | W | Wymagane | Typ | Opis |
---|---|---|---|---|
column
|
path | True |
string |
Nazwa kolumny. |
database
|
path | True |
string |
Nazwa bazy danych. |
resource
|
path | True |
string |
Nazwa grupy zasobów zawierającej zasób. Tę wartość można uzyskać z interfejsu API Resource Manager platformy Azure lub portalu. |
schema
|
path | True |
string |
Nazwa schematu. |
server
|
path | True |
string |
Nazwa serwera. |
subscription
|
path | True |
string |
Identyfikator subskrypcji identyfikujący subskrypcję platformy Azure. |
table
|
path | True |
string |
Nazwa tabeli. |
api-version
|
query | True |
string |
Wersja interfejsu API do użycia dla żądania. |
Odpowiedzi
Nazwa | Typ | Opis |
---|---|---|
200 OK |
Pomyślnie pobrano kolumnę bazy danych. |
|
Other Status Codes |
Odpowiedzi na błędy: ***
|
Przykłady
Get database column
Przykładowe żądanie
Przykładowa odpowiedź
{
"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
}
}
Definicje
Nazwa | Opis |
---|---|
Column |
Typ danych kolumny. |
Database |
Zasób kolumny bazy danych. |
Table |
Typ czasowy tabeli. |
ColumnDataType
Typ danych kolumny.
Nazwa | Typ | Opis |
---|---|---|
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
Zasób kolumny bazy danych.
Nazwa | Typ | Opis |
---|---|---|
id |
string |
Identyfikator zasobu. |
name |
string |
Nazwa zasobu. |
properties.columnType |
Typ danych kolumny. |
|
properties.isComputed |
boolean |
Określa, czy kolumna jest obliczana. |
properties.memoryOptimized |
boolean |
Niezależnie od tego, czy kolumna należy do tabeli zoptymalizowanej pod kątem pamięci. |
properties.temporalType |
Typ czasowy tabeli. |
|
type |
string |
Typ zasobu. |
TableTemporalType
Typ czasowy tabeli.
Nazwa | Typ | Opis |
---|---|---|
HistoryTable |
string |
|
NonTemporalTable |
string |
|
SystemVersionedTemporalTable |
string |