Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将数据从 sqlite 中的表导入到 mysql 表中:
U 将 sqlite 表导出为 csv 文件。将 csv 文件导入 mysql 表时,出现以下错误:
#1366 - Incorrect integer value: 'IDAPPRECIATIONL' for column 'idAppreciation' at row 1
IDAPPRECIATION是 sqlite 数据库的列,idAppreciation 是 mysql 表的列,它们都是自增的。
IDAPPRECIATION
CSV 文件中的第一行可能是 sqlite 表中的列名。不带列名导出或删除第一行。或者在导入期间,如果您可以选择跳过第一行。