pymysql.err.DataError: (1366, "Incorrect integer value: '' for column 'height' at row 1")
时间: 2023-10-28 11:21:48 浏览: 196
MySql 错误Incorrect string value for column
这个错误提示是因为在插入数据时,你给"height"这个列传递了一个空字符串,但是该列的类型是整型,因此无法将空字符串转换为整数,导致出现了数据错误(DataError)。解决这个问题的方法是要么将空字符串转换为整数,要么将该列的类型改为字符串类型。你可以检查一下你的数据表结构和插入的数据,看看是否有类似这样的问题。
阅读全文