zhangyong 1 year ago
parent
commit
d6c3bc8b33
1 changed files with 1 additions and 1 deletions
  1. 1 1
      main.py

+ 1 - 1
main.py

@@ -15,7 +15,7 @@ def get_account_id():
     current_time = datetime.now()
     formatted_time = current_time.strftime("%Y-%m-%d")
     count = f"""SELECT COUNT(*) AS total_count FROM ( SELECT audio, account_id FROM video_audio WHERE time = '{formatted_time}' GROUP BY audio, account_id) AS subquery;"""
-
+    print(count)
     count = MysqlHelper.get_values(count, "prod")
     return count
 if __name__ == '__main__':