मुख्य कंटेंट तक स्किप करें

Table.ColumnsOfType

ऐसे स्तंभों के नामों वाली सूची लौटाता है जिनका मिलान निर्दिष्ट प्रकारों से होता है.

Syntax

Table.ColumnsOfType(
table as table,
listOfTypes as list
) as list

Remarks

तालिका table से ऐसे स्तंभ नामों वाली सूची लौटाता है जिनका मिलान listOfTypes में निर्दिष्ट प्रकारों से होता है.

Examples

Example #1

तालिका से Number.Type प्रकार के स्तंभ के नाम लौटाएँ.

Table.ColumnsOfType(
Table.FromRecords(
{[a = 1, b = "hello"]},
type table[a = Number.Type, b = Text.Type]
),
{type number}
)

Result:

{"a"}

Category

Table.Column operations