mysql IntegrityError: (pymysql.err.IntegrityError) (1062, "Duplicate entry '000001.SZ-2018-

Posted trp

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql IntegrityError: (pymysql.err.IntegrityError) (1062, "Duplicate entry '000001.SZ-2018-相关的知识,希望对你有一定的参考价值。

IntegrityError: (pymysql.err.IntegrityError) (1062, "Duplicate entry ‘000001.SZ-2018-07-02‘ for key ‘PRIMARY‘")
[SQL: INSERT INTO stock_daily_basic (ts_code, trade_date, close, turnover_rate, turnover_rate_f, volume_ratio, pe, pe_ttm, pb, ps, ps_ttm, dv_ratio, dv_ttm, total_share, float_share, free_share, total_mv, circ_mv) VALUES (%(ts_code)s, %(trade_date)s, %(close)s, %(turnover_rate)s, %(turnover_rate_f)s, %(volume_ratio)s, %(pe)s, %(pe_ttm)s, %(pb)s, %(ps)s, %(ps_ttm)s, %(dv_ratio)s, %(dv_ttm)s, %(total_share)s, %(float_share)s, %(free_share)s, %(total_mv)s, %(circ_mv)s)]
[parameters: ({‘ts_code‘: ‘600230.SH‘, ‘trade_date‘: ‘20180702‘, ‘close‘: 22.84, ‘turnover_rate‘: 3.2284, ‘turnover_rate_f‘: 6.0057, ‘volume_ratio‘: 1.99, ‘pe‘: 7.3318, ‘pe_ttm‘: 7.49, ‘pb‘: 3.1378, ‘ps‘: 2.1296, ‘ps_ttm‘: 2.0831, ‘dv_ratio‘: 0.41, ‘dv_ttm‘: 1.56, ‘total_share‘: 41186.3502, ‘float_share‘: 41186.3502, ‘free_share‘: 22139.6078, ‘total_mv‘: 940696.2386, ‘circ_mv‘: 940696.2386},

 

数据表中设置了主键(Primary Key),而主键对应的值是不允许重复的。
错误提示为:你插入的记录与数据表中原有记录的主键重复了(Duplicate)。所以插入失败。

注意:检查表中加了”unique=True”属性的字段,在添加记录时是否添加了重复值。

 

sqlalchemy给出的错误提示信息:

https://docs.sqlalchemy.org/en/13/errors.html#error-gkpj

IntegrityError

Exception raised when the relational integrity of the database is affected, e.g. a foreign key check fails.

This error is a DBAPI Error and originates from the database driver (DBAPI), not SQLAlchemy itself.

 

以上是关于mysql IntegrityError: (pymysql.err.IntegrityError) (1062, "Duplicate entry '000001.SZ-2018-的主要内容,如果未能解决你的问题,请参考以下文章

无法在 Python 中捕获 MySQL IntegrityError

IntegrityError 中缺少表名(Django ORM)

mysql插入数据报错IntegrityError: (1062, "Duplicate entry 'xx' for key 'xxxxx'")

IntegrityError:(1062,键的重复条目)

IntegrityError:(1062,“密钥 2 的重复条目 '3-add_author'”)

ActiveStorage::IntegrityError 何时引发?