mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-27 04:54:21 +01:00
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.
41 lines
639 B
SQL
41 lines
639 B
SQL
-- LIMBO_SKIP: subquery in where not supported
|
|
|
|
|
|
select
|
|
s_name,
|
|
s_address
|
|
from
|
|
supplier,
|
|
nation
|
|
where
|
|
s_suppkey in (
|
|
select
|
|
ps_suppkey
|
|
from
|
|
partsupp
|
|
where
|
|
ps_partkey in (
|
|
select
|
|
p_partkey
|
|
from
|
|
part
|
|
where
|
|
p_name like 'frosted%'
|
|
)
|
|
and ps_availqty > (
|
|
select
|
|
0.5 * sum(l_quantity)
|
|
from
|
|
lineitem
|
|
where
|
|
l_partkey = ps_partkey
|
|
and l_suppkey = ps_suppkey
|
|
and l_shipdate >= '1994-01-01'
|
|
and l_shipdate < '1995-01-01' -- modified not to include cast({'year': 1} as interval)
|
|
)
|
|
)
|
|
and s_nationkey = n_nationkey
|
|
and n_name = 'IRAN'
|
|
order by
|
|
s_name;
|