Commit 7a73c21b authored by 吴升宇's avatar 吴升宇

fix auto folllow and click sql

parent 78ced253
...@@ -18,7 +18,7 @@ def get_commnet_id(numtime, numtime2, content_level_low=0, content_level_top=6): ...@@ -18,7 +18,7 @@ def get_commnet_id(numtime, numtime2, content_level_low=0, content_level_top=6):
cursor.execute( cursor.execute(
"select t.id from topic t left join user_extra u on t.user_id = u.user_id " "select t.id from topic t left join user_extra u on t.user_id = u.user_id "
"where u.is_shadow=0 and t.create_time > '%s' and t.create_time < '%s' and t.is_online=1 " "where IFNULL(u.is_shadow,'') != 1 and t.create_time > '%s' and t.create_time < '%s' and t.is_online=1 "
"and t.content_level >= %s and t.content_level <= %s " % (numtime, numtime2, str(content_level_low), str(content_level_top))) "and t.content_level >= %s and t.content_level <= %s " % (numtime, numtime2, str(content_level_low), str(content_level_top)))
res = cursor.fetchall() res = cursor.fetchall()
......
...@@ -19,7 +19,7 @@ def get_commnet_id(numtime, numtime2, content_level_low=0, content_level_top=6): ...@@ -19,7 +19,7 @@ def get_commnet_id(numtime, numtime2, content_level_low=0, content_level_top=6):
cursor.execute( cursor.execute(
"select t.id from topic t left join user_extra u on t.user_id = u.user_id " "select t.id from topic t left join user_extra u on t.user_id = u.user_id "
"where u.is_shadow=0 and t.create_time > '%s' and t.create_time < '%s' and t.is_online=1 " "where IFNULL(u.is_shadow,'') != 1 and t.create_time > '%s' and t.create_time < '%s' and t.is_online=1 "
"and t.content_level >= %s and t.content_level <= %s " % (numtime, numtime2, str(content_level_low), str(content_level_top))) "and t.content_level >= %s and t.content_level <= %s " % (numtime, numtime2, str(content_level_low), str(content_level_top)))
res = cursor.fetchall() res = cursor.fetchall()
......
...@@ -17,7 +17,7 @@ def get_commnet_id(numtime, numtime2, content_level_low=0, content_level_top=3): ...@@ -17,7 +17,7 @@ def get_commnet_id(numtime, numtime2, content_level_low=0, content_level_top=3):
cursor.execute( cursor.execute(
"select t.user_id from topic t left join user_extra u on t.user_id = u.user_id " "select t.user_id from topic t left join user_extra u on t.user_id = u.user_id "
"where u.is_shadow=0 and t.create_time > '%s' and t.create_time < '%s' " "where IFNULL(u.is_shadow,'') != 1 and t.create_time > '%s' and t.create_time < '%s' "
"and t.content_level >= %s and t.content_level <= %s " % (numtime, numtime2, str(content_level_low), str(content_level_top))) "and t.content_level >= %s and t.content_level <= %s " % (numtime, numtime2, str(content_level_low), str(content_level_top)))
res = cursor.fetchall() res = cursor.fetchall()
......
...@@ -17,7 +17,7 @@ def get_commnet_id(numtime, numtime2): ...@@ -17,7 +17,7 @@ def get_commnet_id(numtime, numtime2):
cursor.execute( cursor.execute(
"select a.user_id from account_user a left join user_extra u on a.user_id = u.user_id " "select a.user_id from account_user a left join user_extra u on a.user_id = u.user_id "
"WHERE a.create_time > '%s' and a.create_time < '%s' and u.is_shadow = 0 " % (numtime, numtime2)) "WHERE a.create_time > '%s' and a.create_time < '%s' and IFNULL(u.is_shadow,'') != 1 " % (numtime, numtime2))
res = cursor.fetchall() res = cursor.fetchall()
return res and [i for i, in res] or [] return res and [i for i, in res] or []
......
...@@ -16,7 +16,7 @@ def get_commnet_id(numtime, numtime2, content_level_low=0, content_level_top=6): ...@@ -16,7 +16,7 @@ def get_commnet_id(numtime, numtime2, content_level_low=0, content_level_top=6):
cursor.execute( cursor.execute(
"select t.user_id from topic t left join user_extra u on t.user_id = u.user_id " "select t.user_id from topic t left join user_extra u on t.user_id = u.user_id "
"where u.is_shadow=0 and t.create_time > '%s' and t.create_time < '%s' " "where IFNULL(u.is_shadow,'') != 1 and t.create_time > '%s' and t.create_time < '%s' "
"and t.content_level >= %s and t.content_level <= %s " % (numtime, numtime2, str(content_level_low), str(content_level_top))) "and t.content_level >= %s and t.content_level <= %s " % (numtime, numtime2, str(content_level_low), str(content_level_top)))
res_post = cursor.fetchall() res_post = cursor.fetchall()
......
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