插入 table 时浮点数语法错误
Syntax error with floats when inserting into a table
我正在尝试使用 python 将数据插入 table,但出现语法错误。这是我的 table 格式。
mycursor.execute("""CREATE TABLE workers (
`ID` int(5) NOT NULL AUTO_INCREMENT,
` x` FLOAT NOT NULL,
` y` FLOAT NOT NULL,
`z` FLOAT NOT NULL,
`Acc` int NOT NULL,
`Datasource` char(3) NOT NULL,
`Datatype` int(5) NOT NULL,
PRIMARY KEY (`ID`))""")
table 代码工作正常
这是我试图插入到 table
中的数据
mycursor.execute("""INSERT INTO workers VALUES
(1,\
1.2720693 ,\
6.583606 ,\
6.8299093 ,\
3 ,\
"Acc" ,\
1)""")
这是我得到的错误
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 '\
1.2720693 ,6.583606 ,6.8299093 ,3 ,"Acc" ,1)' at line 2
您从服务器返回的错误告诉您反斜杠是问题所在。
mycursor.execute("""
INSERT INTO workers VALUE (1,
1.2720693,
6.583606,
6.8299093,
3,
"Acc",
1)
""")
python 中的三重字符串专为多行字符串设计,因此您无需使用反斜杠处理续行。您的 INSERT
语句中还有 7 个字段值,但您只需要 6 个,因为 ID
列是自动递增的。
我正在尝试使用 python 将数据插入 table,但出现语法错误。这是我的 table 格式。
mycursor.execute("""CREATE TABLE workers (
`ID` int(5) NOT NULL AUTO_INCREMENT,
` x` FLOAT NOT NULL,
` y` FLOAT NOT NULL,
`z` FLOAT NOT NULL,
`Acc` int NOT NULL,
`Datasource` char(3) NOT NULL,
`Datatype` int(5) NOT NULL,
PRIMARY KEY (`ID`))""")
table 代码工作正常
这是我试图插入到 table
中的数据mycursor.execute("""INSERT INTO workers VALUES
(1,\
1.2720693 ,\
6.583606 ,\
6.8299093 ,\
3 ,\
"Acc" ,\
1)""")
这是我得到的错误
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 '\
1.2720693 ,6.583606 ,6.8299093 ,3 ,"Acc" ,1)' at line 2
您从服务器返回的错误告诉您反斜杠是问题所在。
mycursor.execute("""
INSERT INTO workers VALUE (1,
1.2720693,
6.583606,
6.8299093,
3,
"Acc",
1)
""")
python 中的三重字符串专为多行字符串设计,因此您无需使用反斜杠处理续行。您的 INSERT
语句中还有 7 个字段值,但您只需要 6 个,因为 ID
列是自动递增的。