Commit 8be6d717 by 岳巧源

add fix py

parent 3fafb1aa
Showing with 35 additions and 19 deletions
......@@ -33,20 +33,32 @@ config_prod = {
"""
为新增列 sku_sn字段赋值,当前为platform = 1的数据,sku_sn为 sku_id字段的字符串形式。
"""
# def main(conf: dict):
# host = conf["mysql"]["host"]
# port = conf["mysql"]["port"]
# user = conf["mysql"]["user"]
# password = conf["mysql"]["password"]
# database = conf["mysql"]["database"]
# db = pymysql.connect(host=host, port=port, user=user, password=password, database=database)
# cursor = db.cursor()
# sql = "select id, sku_id from lie_shop_push_sku_log where id >= %d order by id asc limit 5000"
# index = 1
# while (index <= 499813):
#
#
#
#
#
# if __name__ == '__main__':
def main(conf: dict):
host = conf["mysql"]["host"]
port = conf["mysql"]["port"]
user = conf["mysql"]["user"]
password = conf["mysql"]["password"]
database = conf["mysql"]["database"]
db = pymysql.connect(host=host, port=port, user=user, password=password, database=database)
cursor = db.cursor()
sql = "select id, sku_id from lie_shop_push_sku_log where id >= %s and platform = 1 order by id asc limit 5000"
index = 1
max_id = 549690
while index <= max_id:
cursor.execute(query=sql, args=(index,))
results = cursor.fetchall()
for i in range(len(results)):
id = results[i][0]
sku_id = results[i][1]
sku_sn = str(sku_id)
update_sql = "update lie_shop_push_sku_log set sku_sn = %s where id = %s"
cursor.execute(query=update_sql, args=(sku_sn, id,))
db.commit()
print(update_sql % (sku_sn, id))
index = index + 5000
if __name__ == '__main__':
main(config_dev)
......@@ -36,4 +36,8 @@ update lie_shop_push_sku_log set audit_status = 1 where create_time > 1730368800
create index sku_id_platform_index on lie_shop_push_sku_log(sku_id,platform);
alter table lie_shop_push_sku_log add column sku_sn varchar(64) default '' not null comment 'sku推送唯一编码' after sku_id;
\ No newline at end of file
alter table lie_shop_push_sku_log add column sku_sn varchar(64) default '' not null comment 'sku推送唯一编码' after sku_id;
update lie_shop_picture set jd_pdf = '' where lie_pdf like '%.html%';
select count(*) from lie_shop_picture where lie_pdf like '%.html%';
\ No newline at end of file
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 sign in to comment