Type.TableColumn

Синтаксис

Type.TableColumn(tableType as type, column as text) as type

Около

Возвращает тип столбца column в таблице типа tableType.

Example

Возвращает тип столбца Name в таблице Customers.

Использование

let
    Customers = #table(
        type table [ID = Int64.Type, Name = text],
        {{1, "Contoso"}, {2, "Fabrikam"}}
    )
in
    Type.TableColumn(Value.Type(Customers), "Name")

Выходные данные

type text