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
229 B
SQL
7 lines
229 B
SQL
select count(*) from dateinfo,customer, part, supplier, lineorder
|
|
where s_suppkey = lo_suppkey
|
|
and d_datekey = lo_orderdate
|
|
and p_partkey = lo_partkey
|
|
and c_custkey = lo_custkey
|
|
and s_nation = 'BRAZIL';
|