mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-17 08:34:19 +01:00
41 lines
661 B
SQL
41 lines
661 B
SQL
-- LIMBO_SKIP: query 22 is slow as hell in both Turso and Sqlite
|
|
|
|
|
|
select
|
|
cntrycode,
|
|
count(*) as numcust,
|
|
sum(c_acctbal) as totacctbal
|
|
from
|
|
(
|
|
select
|
|
substr(c_phone, 1, 2) as cntrycode,
|
|
c_acctbal
|
|
from
|
|
customer
|
|
where
|
|
substr(c_phone, 1, 2) in
|
|
('20', '14', '21', '28', '15', '24', '27')
|
|
and c_acctbal > (
|
|
select
|
|
avg(c_acctbal)
|
|
from
|
|
customer
|
|
where
|
|
c_acctbal > 0.00
|
|
and substr(c_phone, 1, 2) in
|
|
('20', '14', '21', '28', '15', '24', '27')
|
|
)
|
|
and not exists (
|
|
select
|
|
*
|
|
from
|
|
orders
|
|
where
|
|
o_custkey = c_custkey
|
|
)
|
|
) as custsale
|
|
group by
|
|
cntrycode
|
|
order by
|
|
cntrycode;
|