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
5bd21149
Commit
5bd21149
authored
8 years ago
by
mengdongxing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update tkdm_base_device_pay_info.sql
parent
c79b442f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
tkdm_base_device_pay_info.sql
tkdm_base_device_pay_info.sql
+4
-2
No files found.
tkdm_base_device_pay_info.sql
View file @
5bd21149
...
...
@@ -14,7 +14,8 @@ select nvl(b.appid,a.appid) as appid,
if
(
isnull
(
a
.
deviceid
),
'2017-02-24'
,
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
round
(
nvl
(
b
.
amt_payment
,
0
)
+
nvl
(
a
.
amt_payment
,
0
),
2
)
as
amt_payment
,
nvl
(
a
.
is_new
,
0
)
as
is_new_for_last_ds
from
(
select
appid
,
deviceid
,
...
...
@@ -55,7 +56,8 @@ first_payment_ds string,
last_payment_ds
string
,
num_payment_cnt
int
,
num_payment_day
int
,
amt_payment
double
amt_payment
double
,
is_new_for_last_ds
int
)
PARTITIONED
BY
(
ds
string
)
clustered
by
(
deviceid
)
sorted
by
(
deviceid
,
appid
)
into
32
buckets
...
...
This diff is collapsed.
Click to expand it.
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