Commit a2e85997 authored by 高雅喆's avatar 高雅喆

update

parent e9d11bae
......@@ -191,12 +191,12 @@ def get_user_tag_score(cl_id, all_word_tags, size=10):
score_result.rename(columns={"cl_id": "device_id"}, inplace=True)
# 写tidb
delete_sql = "delete from api_market_personas2 where device_id='{}'".format(cl_id)
delete_sql = "delete from api_market_personas where device_id='{}'".format(cl_id)
cur_jerry_test.execute(delete_sql)
db_jerry_test.commit()
for index, row in score_result.iterrows():
insert_sql = "insert into api_market_personas2 values (null, {}, '{}', {}, {}, {})".format(
insert_sql = "insert into api_market_personas values (null, {}, '{}', {}, {}, {})".format(
row['tag_id'], row['device_id'], row['score'], row['weight'], row['pay_type'])
cur_jerry_test.execute(insert_sql)
db_jerry_test.commit()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment