my python file looks like that:
statement="SELECT DATE_FORMAT(`Date`,%s) AS x, Sum(%s) As y FROM `covid19-db`.`covid-19` WHERE " "`Date` between %s and %s GROUP BY Date;" db_cursor.execute(statement,(dateFormat,case,start_date,CURRENT_DAY)) result = db_cursor.fetchall()
is it necessary to store the query in a file?
2.1m questions
2.1m answers
60 comments
57.0k users