Files
turso/perf/tpc-h/queries/4.sql
Jussi Saurio a783f82470 bench/tpch: remove "cast('yyyy-mm-dd' as datetime)"
this causes sqlite and tursodb to interpret the value as just 'yyyy',
e.g. '1995-01-01' becomes '1995', causing a lot of the queries not to
return any results, which is not what we want.
2025-09-26 15:55:38 +03:00

25 lines
411 B
SQL

-- LIMBO_SKIP: subquery in where not supported
select
o_orderpriority,
count(*) as order_count
from
orders
where
o_orderdate >= '1997-06-01'
and o_orderdate < '1997-09-01' -- modified not to include cast({'month': 3} as interval)
and exists (
select
*
from
lineitem
where
l_orderkey = o_orderkey
and l_commitdate < l_receiptdate
)
group by
o_orderpriority
order by
o_orderpriority;