gpt4 book ai didi

Python通过mysql.connector将变量插入到mysql

转载 作者:行者123 更新时间:2023-11-29 20:11:50 27 4
gpt4 key购买 nike

我正在尝试创建一个 python 脚本来将数据插入 mysql,但是当我尝试测试它时出现错误。

这就是我创建表格的方式:

CREATE TABLE aaa (
id MEDIUMINT NOT NULL AUTO_INCREMENT,
data CHAR(30) NOT NULL,
PRIMARY KEY (id)
);

这是我的 python 脚本:

import mysql.connector
from time import strftime, gmtime, sleep

cnx = mysql.connector.connect(
user='root', password='abcd', database='test_db'
)
cur = cnx.cursor()
# get current timestamp
curr_time = strftime("%Y%m%d_%H%M%S", gmtime())
cur.execute(
"INSERT INTO aaa(data) VALUES (%s)", (curr_time)
)
cnx.commit()
cnx.close()

错误是这样的:

mysql.connector.errors.ProgrammingError: 1064 (42000): 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 '%s)' at line 1

谁能帮我解决这个问题吗?

最佳答案

"INSERT INTO aaa(data) VALUES (%s)", (curr_time) 中的 , 替换为 %,它应该是 “插入aaa(数据)值(%s)”%(curr_time)。@tsh 是正确的,请使用此 (curr_time) -> (curr_time,) 代替

关于Python通过mysql.connector将变量插入到mysql,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40054426/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com