ClickHouse/tests/queries/0_stateless/01768_array_product.sql

3 lines
103 B
MySQL
Raw Normal View History

2021-03-29 02:35:08 +00:00
select arrayProduct(array(1,2,3,4));
select arrayProduct(array(1.0,2.0,3.0,4.5)) as k , toTypeName(k);