Table.SelectColumns
傳回只包含指定資料行的資料表。
Syntax
Table.SelectColumns(
table as table,
columns as any,
optional missingField as MissingField.Type
) as table
Remarks
傳回只包含指定 table 的 columns。
table: 提供的資料表。columns: 要從資料表table傳回的資料行清單。傳回資料表中的資料行會按照columns所列的順序排列。missingField: (選用) 如果資料行不存在,該如何處理。 範例:MissingField.UseNull或MissingField.Ignore。