Files
turso/perf/tpc-h/queries/6.sql
2025-05-15 17:09:49 +03:00

10 lines
300 B
SQL

select
sum(l_extendedprice * l_discount) as revenue
from
lineitem
where
l_shipdate >= cast('1994-01-01' as datetime)
and l_shipdate < cast('1995-01-01' as datetime) -- modified not to include cast({'year': 1} as interval)
and l_discount between 0.08 - 0.01 and 0.08 + 0.01
and l_quantity < 24;