Commit cf6a8771 authored by 吴升宇's avatar 吴升宇

fix auto reply on sql

parent d7831f3d
...@@ -14,7 +14,7 @@ def get_data(numtime, numtime2): ...@@ -14,7 +14,7 @@ def get_data(numtime, numtime2):
pc = pymysql.connect(host=host, user=user, passwd=passwd, db=db, port=3306) pc = pymysql.connect(host=host, user=user, passwd=passwd, db=db, port=3306)
cursor = pc.cursor() cursor = pc.cursor()
cursor.execute( cursor.execute(
"SELECT user_id,id FROM topic WHERE is_online=1 and (create_time >= '%s' and create_time <= '%s' )" % ( "SELECT user_id FROM topic WHERE is_online=1 and (create_time >= '%s' and create_time <= '%s' )" % (
numtime2, numtime)) numtime2, numtime))
res = cursor.fetchall() res = cursor.fetchall()
return res and [r for r, in res] or [] return res and [r for r, in res] or []
......
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