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
8 lines
200 B
SQL
Executable File
8 lines
200 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;
|
|
|