You've already forked mariadb-columnstore-engine
							
							
				mirror of
				https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
				synced 2025-11-03 17:13:17 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			45 lines
		
	
	
		
			753 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			753 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
-- $ID$
 | 
						|
-- TPC-H/TPC-R Global Sales Opportunity Query (Q22)
 | 
						|
-- Functional Query Definition
 | 
						|
-- Approved February 1998
 | 
						|
:x
 | 
						|
:o
 | 
						|
select
 | 
						|
	cntrycode,
 | 
						|
	count(*) as numcust,
 | 
						|
	sum(c_acctbal) as totacctbal
 | 
						|
from
 | 
						|
	(
 | 
						|
		select
 | 
						|
			substring(c_phone from 1 for 2) as cntrycode,
 | 
						|
			c_acctbal
 | 
						|
		from
 | 
						|
			customer
 | 
						|
		where
 | 
						|
			substring(c_phone from 1 for 2) in
 | 
						|
				(':1', ':2', ':3', ':4', ':5', ':6', ':7')
 | 
						|
			and c_acctbal > (
 | 
						|
				select
 | 
						|
					avg(c_acctbal)
 | 
						|
				from
 | 
						|
					customer
 | 
						|
				where
 | 
						|
					c_acctbal > 0.00
 | 
						|
					and substring(c_phone from 1 for 2) in
 | 
						|
						(':1', ':2', ':3', ':4', ':5', ':6', ':7')
 | 
						|
			)
 | 
						|
			and not exists (
 | 
						|
				select
 | 
						|
					*
 | 
						|
				from
 | 
						|
					orders
 | 
						|
				where
 | 
						|
					o_custkey = c_custkey
 | 
						|
			)
 | 
						|
	) as custsale
 | 
						|
group by
 | 
						|
	cntrycode
 | 
						|
order by
 | 
						|
	cntrycode;
 | 
						|
:n -1
 |