You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-08 14:22:09 +03:00
8 lines
150 B
Plaintext
8 lines
150 B
Plaintext
USE tpch1;
|
|
select count(*) from part, lineitem
|
|
where p_retailprice < 944.23
|
|
and p_partkey = l_suppkey
|
|
and l_shipdate < '1992-04-09';
|
|
count(*)
|
|
4074
|