Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents
minLevel1
maxLevel6
outlinefalse
typeflat
printablefalse

Usage details

LQL

Code Block
select *, toIntArray(column) as intArrayColumn from tableName

...

Output:
A column intArrayColumn which is same as column but each element in each row casted to integer data type.

Example

Input Tabletable: input_table

column

WrappedArray("3.45", "15")

WrappedArray("178.90", "-45.78")

...