Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tkdm
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etl
tkdm
Commits
1e47cb9f
Commit
1e47cb9f
authored
Mar 03, 2017
by
mengdongxing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update tkdm_base_device_pay_info.sql
parent
5056198a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
12 deletions
+11
-12
tkdm_base_device_pay_info.sql
tkdm_base_device_pay_info.sql
+11
-12
No files found.
tkdm_base_device_pay_info.sql
View file @
1e47cb9f
...
...
@@ -6,29 +6,28 @@ set hive.optimize.bucketmapjoin = true;
set
hive
.
optimize
.
bucketmapjoin
.
sortedmerge
=
true
;
set
hive
.
merge
.
mapredfiles
=
true
;
--insert overwrite table tkdm.tkdm_base_device_pay_info partition(ds='2017-02-24')
insert
overwrite
table
tkdm
.
tkdm_base_device_pay_info
partition
(
ds
=
'2017-02-23'
)
select
/*+mapjoin(a)*/
nvl
(
b
.
appid
,
a
.
appid
)
as
appid
,
nvl
(
b
.
deviceid
,
a
.
deviceid
)
as
deviceid
,
nvl
(
b
.
first_payment_ds
,
'2017-02-2
3
'
)
as
first_payment_ds
,
if
(
isnull
(
a
.
deviceid
),
'2017-02-2
3
'
,
nvl
(
b
.
last_payment_ds
,
'1970-01-01'
))
as
last_payment_ds
,
nvl
(
b
.
first_payment_ds
,
'2017-02-2
4
'
)
as
first_payment_ds
,
if
(
isnull
(
a
.
deviceid
),
'2017-02-2
4
'
,
nvl
(
b
.
last_payment_ds
,
'1970-01-01'
))
as
last_payment_ds
,
nvl
(
b
.
num_payment_cnt
,
0
)
+
nvl
(
a
.
num_payment_cnt
,
0
)
as
num_payment_cnt
,
nvl
(
b
.
num_payment_day
,
0
)
+
nvl
(
a
.
num_payment_day
,
0
)
as
num_payment_day
,
round
(
nvl
(
b
.
amt_payment
,
0
)
+
nvl
(
a
.
amt_payment
,
0
),
2
)
as
amt_payment
from
(
select
appid
,
deviceid
,
round
(
sum
(
amount
),
2
)
as
amt_payment
,
count
(
1
)
as
num_payment_cnt
,
is_new
,
amt_payment
,
num_payment_cnt
,
1
as
num_payment_day
from
tk
io
.
tkio_mid_pay
_day
where
ds
=
'2017-02-2
3
'
and
from
tk
dm
.
tkdm_data_payment_detial
_day
where
ds
=
'2017-02-2
4
'
and
deviceid
!=
'00000000-0000-0000-0000-000000000000'
and
deviceid
!=
''
and
deviceid
!=
'0'
group
by
appid
,
deviceid
distribute
by
appid
,
deviceid
)
a
join
full
join
(
select
appid
,
deviceid
,
...
...
@@ -38,13 +37,14 @@ from
num_payment_day
,
amt_payment
from
tkdm
.
tkdm_base_device_pay_info
where
ds
=
date_sub
(
'2017-02-2
3
'
,
1
)
where
ds
=
date_sub
(
'2017-02-2
4
'
,
1
)
)
b
on
a
.
appid
=
b
.
appid
and
a
.
deviceid
=
b
.
deviceid
use
tkdm
;
...
...
@@ -64,4 +64,3 @@ FIELDS TERMINATED BY '\t'
STORED
AS
ORC
location
's3://reyuntkio/warehouse/tkio/tkdm.db/tkdm_base_device_pay_info'
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment