1064 error al funcionamiento de base de datos MySQL con Python

123wyf:

Quiero escribir un programa en Python para controlar la base de datos MySQL, pero se produce el siguiente error

pymysql.err.ProgrammingError: (1064, "You have an error in your SQL syntax; chec
k the manual that corresponds to your MySQL server version for the right syntax
to use near 'Code,type, number,Whether )VALUES ('cl8k-k520-fg45-d4sa-sd9k','n' at line 1")

Código:

import pymysql 
db = pymysql.connect("localhost", "root", "root", "test")
cursor = db.cursor()
sql = "INSERT INTO BOOKS(Activation Code, \
       type, number,Whether ) \
       VALUES (%s,%s,%s,%s)"
data = [("cl8k-k520-fg45-d4sa-sd9k",'n','10','n'),
        ("jhg6-58jh-gh8o-8uik-7jk8",'c','20','n'),
        ("x5hg-gf5h-4hj5-g4h5-fh5t",'y','999','n'),
        ("fg8j-h584-fd4g-fg4d-fgg4",'n','1','y'),
        ("4jk4-5kl4-4klk-4lji-4ghj",'e','6','n'),
        ]
cursor.executemany(sql,data)
db.close()

Esta es la primera vez que hacer preguntas sobre esta plataforma. Espero conseguir respuestas

Ron:

incluir Activation Codecomo'Activation Code'

Supongo que te gusta

Origin http://10.200.1.11:23101/article/api/json?id=387471&siteId=1
Recomendado
Clasificación