📜  mysql.connector.errors.InterfaceError:执行操作失败;并非所有参数都在 SQL 语句中使用 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:12.626000             🧑  作者: Mango

代码示例1
# just use %s
add_user = """INSERT INTO DB.tbluser 
              (username, department, startyear, currentpos, link) 
              VALUES (%s, %s, %s, %s, %s)"""