1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-07 03:22:57 +03:00
Files

8 lines
150 B
Plaintext

USE tpch1;
select count(*) from part, lineitem
where p_retailprice < 904.01
and p_partkey = l_suppkey
and l_shipdate < '1993-04-07';
count(*)
1379