forked from StarRocks/starrocks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquery28.sql
More file actions
53 lines (51 loc) · 2.12 KB
/
Copy pathquery28.sql
File metadata and controls
53 lines (51 loc) · 2.12 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
-- query 28
select *
from (select avg(ss_list_price) B1_LP
,count(ss_list_price) B1_CNT
,count(distinct ss_list_price) B1_CNTD
from store_sales
where ss_quantity between 0 and 5
and (ss_list_price between 8 and 8+10
or ss_coupon_amt between 459 and 459+1000
or ss_wholesale_cost between 57 and 57+20)) B1,
(select avg(ss_list_price) B2_LP
,count(ss_list_price) B2_CNT
,count(distinct ss_list_price) B2_CNTD
from store_sales
where ss_quantity between 6 and 10
and (ss_list_price between 90 and 90+10
or ss_coupon_amt between 2323 and 2323+1000
or ss_wholesale_cost between 31 and 31+20)) B2,
(select avg(ss_list_price) B3_LP
,count(ss_list_price) B3_CNT
,count(distinct ss_list_price) B3_CNTD
from store_sales
where ss_quantity between 11 and 15
and (ss_list_price between 142 and 142+10
or ss_coupon_amt between 12214 and 12214+1000
or ss_wholesale_cost between 79 and 79+20)) B3,
(select avg(ss_list_price) B4_LP
,count(ss_list_price) B4_CNT
,count(distinct ss_list_price) B4_CNTD
from store_sales
where ss_quantity between 16 and 20
and (ss_list_price between 135 and 135+10
or ss_coupon_amt between 6071 and 6071+1000
or ss_wholesale_cost between 38 and 38+20)) B4,
(select avg(ss_list_price) B5_LP
,count(ss_list_price) B5_CNT
,count(distinct ss_list_price) B5_CNTD
from store_sales
where ss_quantity between 21 and 25
and (ss_list_price between 122 and 122+10
or ss_coupon_amt between 836 and 836+1000
or ss_wholesale_cost between 17 and 17+20)) B5,
(select avg(ss_list_price) B6_LP
,count(ss_list_price) B6_CNT
,count(distinct ss_list_price) B6_CNTD
from store_sales
where ss_quantity between 26 and 30
and (ss_list_price between 154 and 154+10
or ss_coupon_amt between 7326 and 7326+1000
or ss_wholesale_cost between 7 and 7+20)) B6
limit 100;