Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
B
bi-report
Project
Project
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
data
bi-report
Commits
f3c0fb28
Commit
f3c0fb28
authored
Sep 26, 2020
by
魏艺敏
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'weiyimin' into 'master'
push codes See merge request
!66
parents
a6c93a68
fb2f7310
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
daily_recommend_strategy.sql
pm/daily_recommend_strategy/etl/daily_recommend_strategy.sql
+8
-4
No files found.
pm/daily_recommend_strategy/etl/daily_recommend_strategy.sql
View file @
f3c0fb28
...
...
@@ -69,7 +69,8 @@ FROM
when
card_content_type
in
(
'special_pool'
)
then
'special'
else
card_content_type
end
as
card_content_type
,
CASE
when
transaction_type
in
(
'fmctr'
)
then
array
(
'fmctr'
,
'合计'
)
when
transaction_type
in
(
'high_quality_fmctr'
)
then
array
(
'high_quality_fmctr'
,
'合计'
)
WHEN
transaction_type
like
'%ctr'
THEN
array
(
'ctr预估'
,
'合计'
)
WHEN
(
transaction_type
like
'%ctr'
and
transaction_type
not
in
(
'high_quality_ctr'
))
THEN
array
(
'ctr预估'
,
'合计'
)
when
transaction_type
in
(
'high_quality_ctr'
)
then
array
(
'high_quality_ctr'
,
'合计'
)
WHEN
transaction_type
like
'%cvr'
THEN
array
(
'cvr预估'
,
'合计'
)
WHEN
transaction_type
in
(
'-1'
,
'smr'
)
THEN
array
(
'smr'
,
'合计'
)
when
transaction_type
in
(
'pgc'
,
'hotspot'
)
then
array
(
'热点卡片'
)
...
...
@@ -98,7 +99,8 @@ FROM
cl_id
,
CASE
when
transaction_type
in
(
'fmctr'
)
then
array
(
'fmctr'
,
'合计'
)
when
transaction_type
in
(
'high_quality_fmctr'
)
then
array
(
'high_quality_fmctr'
,
'合计'
)
WHEN
transaction_type
like
'%ctr'
THEN
array
(
'ctr预估'
,
'合计'
)
WHEN
(
transaction_type
like
'%ctr'
and
transaction_type
not
in
(
'high_quality_ctr'
))
THEN
array
(
'ctr预估'
,
'合计'
)
when
transaction_type
in
(
'high_quality_ctr'
)
then
array
(
'high_quality_ctr'
,
'合计'
)
WHEN
transaction_type
like
'%cvr'
THEN
array
(
'cvr预估'
,
'合计'
)
WHEN
transaction_type
in
(
'-1'
,
'smr'
)
THEN
array
(
'smr'
,
'合计'
)
when
transaction_type
in
(
'pgc'
,
'hotspot'
)
then
array
(
'热点卡片'
)
...
...
@@ -132,7 +134,8 @@ FROM
when
params
[
'card_content_type'
]
in
(
'special_pool'
)
then
'special'
else
params
[
'card_content_type'
]
end
as
card_content_type
,
CASE
when
params
[
'transaction_type'
]
in
(
'fmctr'
)
then
array
(
'fmctr'
,
'合计'
)
when
params
[
'transaction_type'
]
in
(
'high_quality_fmctr'
)
then
array
(
'high_quality_fmctr'
,
'合计'
)
WHEN
params
[
'transaction_type'
]
like
'%ctr'
THEN
array
(
'ctr预估'
,
'合计'
)
WHEN
(
params
[
'transaction_type'
]
like
'%ctr'
and
params
[
'transaction_type'
]
not
in
(
'high_quality_ctr'
))
THEN
array
(
'ctr预估'
,
'合计'
)
when
params
[
'transaction_type'
]
in
(
'high_quality_ctr'
)
then
array
(
'high_quality_ctr'
,
'合计'
)
WHEN
params
[
'transaction_type'
]
like
'%cvr'
THEN
array
(
'cvr预估'
,
'合计'
)
WHEN
params
[
'transaction_type'
]
in
(
'-1'
,
'smr'
)
THEN
array
(
'smr'
,
'合计'
)
when
params
[
'transaction_type'
]
in
(
'pgc'
,
'hotspot'
)
then
array
(
'热点卡片'
)
...
...
@@ -160,7 +163,8 @@ FROM
when
params
[
'card_content_type'
]
in
(
'special_pool'
)
then
'special'
else
params
[
'card_content_type'
]
end
,
CASE
when
params
[
'transaction_type'
]
in
(
'fmctr'
)
then
array
(
'fmctr'
,
'合计'
)
when
params
[
'transaction_type'
]
in
(
'high_quality_fmctr'
)
then
array
(
'high_quality_fmctr'
,
'合计'
)
WHEN
params
[
'transaction_type'
]
like
'%ctr'
THEN
array
(
'ctr预估'
,
'合计'
)
WHEN
(
params
[
'transaction_type'
]
like
'%ctr'
and
params
[
'transaction_type'
]
not
in
(
'high_quality_ctr'
))
THEN
array
(
'ctr预估'
,
'合计'
)
when
params
[
'transaction_type'
]
in
(
'high_quality_ctr'
)
then
array
(
'high_quality_ctr'
,
'合计'
)
WHEN
params
[
'transaction_type'
]
like
'%cvr'
THEN
array
(
'cvr预估'
,
'合计'
)
WHEN
params
[
'transaction_type'
]
in
(
'-1'
,
'smr'
)
THEN
array
(
'smr'
,
'合计'
)
when
params
[
'transaction_type'
]
in
(
'pgc'
,
'hotspot'
)
then
array
(
'热点卡片'
)
...
...
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