MySQLdb._exceptions.ProgrammingError:(1064,“你的SQL语法有错误)

问题描述 投票:0回答:1

我在PyCharm中编写查询时遇到了一些问题

这是我的代码:

cursor.execute("SELECT student_email, course_id, section_no FROM LSU.Enrolls")
enroll = cursor.fetchall()
cursor.execute("SELECT course_id, sec_no, team_id FROM LSU.Capstone_Team")
team = cursor.fetchall()
for i in enroll:
    for j in team:
        if i[1] == j[0] and i[2] == j[1]:
            cursor.execute("INSERT IGNORE INTO LSU.Capstone_Team_Members (student_email, team_id, course_id, sec_no) VALUES ('%s', '%s', '%s', '%s')" , (i[0], j[2], i[1], i[2]))

这是我的错误文字:

MySQLdb._exceptions.ProgrammingError: (1064, "You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '[email protected]'', '3', ''CMPSC497'', '1')' at line 1")

谁能帮助我?

mysql pandas pycharm
1个回答
0
投票

在上一个查询中,将占位符值的周围括号更改为括号。还可以尝试删除占位符周围的引号。

© www.soinside.com 2019 - 2024. All rights reserved.