EXTRACT

The EXTRACT function returns a sub-table from a table.

Syntax

EXTRACT(table, [rowSelector, colSelector, includeHeader])

Examples

  • EXTRACT(mytable, '1:2') returns:

  • EXTRACT(mytable, '2:3', 'B:C') returns:

  • EXTRACT(mytable, '2:', ':C') returns:

Last updated