码迷,mamicode.com
首页 > 数据库 > 详细

pymysql.err.InternalError: 1075

时间:2019-09-18 12:53:24      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:nal   logs   rem   lis   ble   mys   correct   https   解决   

pymysql.err.InternalError: (1075, ‘Incorrect table definition; there can be only one auto column and it must be defined as a key‘)

技术图片
python中使用pymysql创建table是报错是上面标题,sql语句如下:
sql = ‘‘‘
create table music (
id int not null auto_increment,
song text,
singer text,
genre text,
issue text,
publisher text,
score text)‘‘‘
百度,问题是:自增字段必须是主键。解决办法是设置id为主键。
修改后sql为:
sql = ‘‘‘
create table music (
id int not null auto_increment,
song text,
singer text,
genre text,
issue text,
publisher text,
score text,
primary key(id)
)‘‘‘
感谢:https://www.cnblogs.com/guodongdidi/p/6290782.html

pymysql.err.InternalError: 1075

标签:nal   logs   rem   lis   ble   mys   correct   https   解决   

原文地址:https://blog.51cto.com/11575772/2438822

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!