Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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?

question from:https://stackoverflow.com/questions/65652181/does-storing-mysql-query-in-file-is-good-practice-right-now-i-write-them-into-p

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.3k views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...