You've already forked mariadb-columnstore-engine
							
							
				mirror of
				https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
				synced 2025-10-30 07:25:34 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			41 lines
		
	
	
		
			755 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			755 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
| -- $Id: tpch09.sql 2657 2007-06-12 16:08:15Z rdempsey $
 | |
| -- TPC-H/TPC-R Product Type Profit Measure Query (Q9)
 | |
| -- Functional Query Definition
 | |
| -- Approved February 1998
 | |
| 
 | |
| define 1 = green
 | |
| 
 | |
| select
 | |
| 	nation,
 | |
| 	o_year,
 | |
| 	sum(amount) as sum_profit
 | |
| from
 | |
| 	(
 | |
| 		select
 | |
| 			n_name as nation,
 | |
| 			extract(year from o_orderdate) as o_year,
 | |
| 			l_extendedprice * (1 - l_discount) - ps_supplycost * l_quantity as amount
 | |
| 		from
 | |
| 			part,
 | |
| 			supplier,
 | |
| 			lineitem,
 | |
| 			partsupp,
 | |
| 			orders,
 | |
| 			nation
 | |
| 		where
 | |
| 			s_suppkey = l_suppkey
 | |
| 			and ps_suppkey = l_suppkey
 | |
| 			and ps_partkey = l_partkey
 | |
| 			and p_partkey = l_partkey
 | |
| 			and o_orderkey = l_orderkey
 | |
| 			and s_nationkey = n_nationkey
 | |
| 			and p_name like '%&1%'
 | |
| 	) profit
 | |
| group by
 | |
| 	nation,
 | |
| 	o_year
 | |
| order by
 | |
| 	nation,
 | |
| 	o_year desc;
 | |
| 
 |