1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-17 09:41:06 +03:00
Files
mariadb-columnstore-engine/mysql/queries/nightly/calbench/ssb_join_example.sql
2016-01-06 14:08:59 -06:00

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';