Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
F
ffm-baseline
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ML
ffm-baseline
Commits
0661416b
Commit
0661416b
authored
Feb 24, 2020
by
张彦钊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add
parent
ff2b30cb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
make_data.py
make_data.py
+2
-2
No files found.
make_data.py
View file @
0661416b
...
...
@@ -3,7 +3,6 @@ import pymysql
import
pandas
as
pd
def
hospital
():
date_str
=
"20200101"
sql
=
"select api.id,"
\
...
...
@@ -14,8 +13,9 @@ def hospital():
"from api_doctor api "
\
"left join statistic_hospital_rank_factor h on api.hospital_id = h.hospital_id "
\
"left join hippo_merchantrelevance b on api.id = b.doctor_id "
\
"left join statistic_merchant_rank_factor m on b.merchant_id = m.merchant_id"
\
"left join statistic_merchant_rank_factor m on b.merchant_id = m.merchant_id
"
\
"where api.doctor_type = 1 and h.date = '{}' and m.partition_date = '{}';"
.
format
(
date_str
,
date_str
)
print
(
sql
)
db
=
pymysql
.
connect
(
host
=
'172.16.30.141'
,
port
=
3306
,
user
=
'work'
,
passwd
=
'BJQaT9VzDcuPBqkd'
,
db
=
'zhengxing'
)
cursor
=
db
.
cursor
()
...
...
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