You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-11-08 03:42:19 +03:00
14 lines
349 B
SQL
Executable File
14 lines
349 B
SQL
Executable File
select n_name, sum(l_quantity), sum(l_extendedprice),
|
|
max(c26_nbr_10),
|
|
sum(c23_nbr_10),
|
|
avg(c28_nbr_10),
|
|
min(c38_nbr_14),
|
|
max(c61_nbr_20),
|
|
count(c76_nbr_4),
|
|
avg(c89_nbr_7)
|
|
from nation, demographics200
|
|
where c23_nbr_10 between 1950 and 2000
|
|
and n_regionkey = 1
|
|
and n_nationkey = c76_nbr_4
|
|
group by n_name order by n_name;
|