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

Table.SingleRow

तालिका में एकल पंक्ति लौटाता है.

Syntax

Table.SingleRow(
table as table
) as record

Remarks

एक पंक्ति table में एकल पंक्ति लौटाता है. यदि table में एक से अधिक पंक्ति होती हैं, तो एक अपवाद दिखाया जाता है.

Examples

Example #1

तालिका में एकल पंक्ति लौटाएँ.

Table.SingleRow(Table.FromRecords({[CustomerID = 1, Name = "Bob", Phone = "123-4567"]}))

Result:

[CustomerID = 1, Name = "Bob", Phone = "123-4567"]

Category

Table.Row operations