内联表
描述
内联表是使用 VALUES 子句创建的临时表。
语法
VALUES ( expression [ , ... ] ) [ table_alias ]
参数
-
表达式
指定一个或多个值、运算符和 SQL 函数的组合,这些值、运算符和 SQL 函数将生成一个值。
-
表别名
指定一个带有可选列名列表的临时名称。
语法:
[ AS ] table_name [ ( column_name [ , ... ] ) ]
示例
-- single row, without a table alias
SELECT * FROM VALUES ("one", 1);
+----+----+
|col1|col2|
+----+----+
| one| 1|
+----+----+
-- three rows with a table alias
SELECT * FROM VALUES ("one", 1), ("two", 2), ("three", null) AS data(a, b);
+-----+----+
| a| b|
+-----+----+
| one| 1|
| two| 2|
|three|null|
+-----+----+
-- complex types with a table alias
SELECT * FROM VALUES ("one", array(0, 1)), ("two", array(2, 3)) AS data(a, b);
+---+------+
| a| b|
+---+------+
|one|[0, 1]|
|two|[2, 3]|
+---+------+