mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-11 07:22:55 +00:00
41 lines
604 B
SQL
41 lines
604 B
SQL
-- $ID$
|
|
-- TPC-H/TPC-R Top Supplier Query (Q15)
|
|
-- Functional Query Definition
|
|
-- Approved February 1998
|
|
|
|
create view revenue0 (supplier_no, total_revenue) as
|
|
select
|
|
l_suppkey,
|
|
sum(l_extendedprice * (1 - l_discount))
|
|
from
|
|
lineitem
|
|
where
|
|
l_shipdate >= date '1995-01-01'
|
|
and l_shipdate < date '1995-01-01' + interval '3' month
|
|
group by
|
|
l_suppkey;
|
|
|
|
|
|
select
|
|
s_suppkey,
|
|
s_name,
|
|
s_address,
|
|
s_phone,
|
|
total_revenue
|
|
from
|
|
supplier,
|
|
revenue0
|
|
where
|
|
s_suppkey = supplier_no
|
|
and total_revenue = (
|
|
select
|
|
max(total_revenue)
|
|
from
|
|
revenue0
|
|
)
|
|
order by
|
|
s_suppkey;
|
|
|
|
drop view revenue0
|
|
;
|