mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-22 02:34:20 +01:00
25 lines
447 B
SQL
25 lines
447 B
SQL
-- LIMBO_SKIP: subquery in where not supported
|
|
|
|
|
|
select
|
|
o_orderpriority,
|
|
count(*) as order_count
|
|
from
|
|
orders
|
|
where
|
|
o_orderdate >= cast('1997-06-01' as datetime)
|
|
and o_orderdate < cast('1997-09-01' as datetime) -- 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;
|