JSON_ARRAY (Lakehouse v1)
Creates a JSON array with specified values.
Analyze Syntax
Section titled “Analyze Syntax”func.json_array(value1[, value2[, ...]])Analyze Examples
Section titled “Analyze Examples”func.json_array('fruits', func.json_array('apple', 'banana', 'orange'), func.json_object('price', 1.2, 'quantity', 3)) |-----------------------------------------------------------------------------------------------------------------------+["fruits",["apple","banana","orange"],{"price":1.2,"quantity":3}] |SQL Syntax
Section titled “SQL Syntax”JSON_ARRAY(value1[, value2[, ...]])Return Type
Section titled “Return Type”JSON array.
SQL Examples
Section titled “SQL Examples”SQL Examples 1: Creating JSON Array With Constant Values or Expressions
Section titled “SQL Examples 1: Creating JSON Array With Constant Values or Expressions”SELECT JSON_ARRAY('PlaidCloud Lakehouse', 3.14, NOW(), TRUE, NULL);
json_array('databend', 3.14, now(), true, null) |--------------------------------------------------------+["PlaidCloud Lakehouse",3.14,"2023-09-06 07:23:55.399070",true,null]|
SELECT JSON_ARRAY('fruits', JSON_ARRAY('apple', 'banana', 'orange'), JSON_OBJECT('price', 1.2, 'quantity', 3));
json_array('fruits', json_array('apple', 'banana', 'orange'), json_object('price', 1.2, 'quantity', 3))|-------------------------------------------------------------------------------------------------------+["fruits",["apple","banana","orange"],{"price":1.2,"quantity":3}] |SQL Examples 2: Creating JSON Array From Table Data
Section titled “SQL Examples 2: Creating JSON Array From Table Data”CREATE TABLE products ( ProductName VARCHAR(255), Price DECIMAL(10, 2));
INSERT INTO products (ProductName, Price)VALUES ('Apple', 1.2), ('Banana', 0.5), ('Orange', 0.8);
SELECT JSON_ARRAY(ProductName, Price) FROM products;
json_array(productname, price)|------------------------------+["Apple",1.2] |["Banana",0.5] |["Orange",0.8] |