MySQL Python MYSQL 업데이트 문
이 Python MYSQL 업데이트 문을 올바르게 얻으려고합니다 (변수 포함). cursor.execute ("UPDATE tblTableName SET Year=%s" % Year ", Month=%s" % Month ", Day=%s" % Day ", Hour=%s" % Hour ", Minute=%s" Minute "WHERE Server=%s " % ServerID) 내가 잘못 가고있는 아이디어가 있습니까? 해결 방법 cursor.execute (""" UPDATE tblTableName SET Year=%s, Month=%s, Day=%s, Hour=%s, Minute=%s WHERE Server=%s """, (Year, Month, Day, Hour, Minute, ServerID)) 기본 ..
2021. 1. 23.