pymysql.err.InternalError: 1075

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pymysql.err.InternalError: 1075相关的知识,希望对你有一定的参考价值。

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的主要内容,如果未能解决你的问题,请参考以下文章

pymysql.err.InternalError:

pymysql.err.InternalError:

pymysql.err.InternalError:(1049,“未知数据库”)

InternalError: (pymysql.err.InternalError) (1205, u'Lock wait timeout exceeded; try restarting t

pymysql.err.InternalError: (1054, "Unknown column 'None' in 'field list'")

pymysql模块