forked from catarinaribeir0/queries-tpch-dbgen-mysql
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path9.sql
36 lines (36 loc) · 861 Bytes
/
9.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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 '%dim%'
) as profit
group by
nation,
o_year
order by
nation,
o_year desc;