170: Warning: (1681, 'Integer display width is deprecated and will be removed in a future release.')

  • 问题描述

    Python中使用pymysql出现如题警告:

    /home/data/anaconda3/lib/python3.7/site-packages/pymysql/cursors.py:170: Warning: (1681, 'Integer display width is deprecated and will be removed in a future release.')
      result = self._query(query)
    
  • 解决方案

    创建表格时INT(M)这种用法是一种扩展属性,M表示整数数据类型的显示宽度(display width)。

    对于浮点和定点数据类型,M表示可以存储的总位数。

    这个display width的功能后续MySQL版本会删除,因此不建议使用。

    INT(M)改为INT

  • References

  1. MYSQL - Warning: #1681 Integer display width is deprecated
  2. MySQL出现警告:Integer display width is deprecated and will be removed in a future release
  3. WL#13127: Deprecate integer display width and ZEROFILL option
发布了857 篇原创文章 · 获赞 1291 · 访问量 92万+

猜你喜欢

转载自blog.csdn.net/The_Time_Runner/article/details/105446521
今日推荐