Other types
Table of Content
ROW
sqlCopierModifier-- The unnest() function returns two columns per row,
-- which are combined into a ROW type.
cr> SELECT unnest([1, 2], ['Arthur', 'Trillian']);
+----------------------------------------+
| unnest([1, 2], ['Arthur', 'Trillian']) |
+----------------------------------------+
| [1, "Arthur"] |
| [2, "Trillian"] |
+----------------------------------------+
SELECT 2 rows in set (... sec)FLOAT_VECTOR
Key Characteristics
Example Usage
Last updated

