我有以下代码:
cur.execute("INSERT INTO term_results(%s, %s) VALUES (%s, %s) WHERE results_id = %s", (term, termInserted, nResult, bResult, mostRecentRecord))
term
并且termInserted
都是字符串。其余的都是整数。我收到以下错误:
Error 1064: You have an error in your SQL syntax;
我试过重新安排WHERE
条款,但没有运气,你能帮忙吗?谢谢。