You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-17 09:41:06 +03:00
7 lines
199 B
SQL
Executable File
7 lines
199 B
SQL
Executable File
select max(l_orderkey), max(l_partkey), max(l_suppkey), count(*) from lineitem
|
|
where l_partkey < 25000000
|
|
and l_suppkey < 1250000
|
|
and l_orderkey < 100000000
|
|
and l_linenumber = 4
|
|
and l_quantity <= 5;
|