我试图用Python运行SQL命令,但由于某种原因,它给我错误“列计数不匹配值计数在行1”.尝试了一切,但仍然没有工作.这是我的代码:-
import mysql.connector
mydb = mysql.connector.connect(host="localhost", user="root", passwd="###", database="student", auth_plugin="mysql_native_password")
cursor = mydb.cursor()
cursor.execute("insert into student(Rollno, Name, Class, marks) values(1,'carren','1B',100, 5,'john','2A',50)")
字符串
1条答案
按热度按时间mklgxw1f1#
你可能需要区分这些值:
字符串