Type.TableColumn

통사론

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

소개

테이블 형식 column에 있는 열 tableType의 형식 유형을 반환합니다.

예시

Customers 테이블에서 "Name" 열의 형식을 반환합니다.

Usage

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

Output

type text