Row functions#
Functions for the ROW data type.
- ROW::fields(data) -> array(varchar)
Returns all the field names of the
dataROW.SELECT ROW::fields(row('hello' as greeting, 'world' as planet)); -- ['GREETING', 'PLANET']
Is the information on this page helpful?
Yes
No