|
@@ -34,10 +34,10 @@ class DailyDataManager(object):
|
|
|
sql2 = f"""
|
|
|
select ContentUrl, wx_sn, createTime
|
|
|
from official_articles_v2
|
|
|
- where createTime >= {yesterday_timestamp}
|
|
|
- and accountName in (
|
|
|
- select distinct account_name from account_avg_info_v2
|
|
|
- );
|
|
|
+ where createTime >= {yesterday_timestamp};
|
|
|
+-- and accountName in (
|
|
|
+-- select distinct account_name from account_avg_info_v2
|
|
|
+-- );
|
|
|
"""
|
|
|
result_list = cls.pqMysql.select(sql2)
|
|
|
log(
|