我需要通过MySQL Workbench的“导入数据”选项进行批量导入。导入到datestamp列时导入失败。我目前有创建的列
Traceback (most recent call last):
File "/Users/Jonathan_Xu/wageCalculator.py", line 27, in <module>
writeTotal.write(str(float(total)+float(readBal)))
ValueError: could not convert string to float:
我认为问题在于我正在导入的数据的格式为timestamp_ DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP
。
不是通常的MM / DD / YYYY HH / MM / SS。有没有办法更改创建语句以接受日期戳MM / DD / YYYY HH / MM的批量导入?
我试图找到答案,但是没有运气。抱歉,以前已经解决过。