标签: python pandas
我正在尝试使用pandas(to_sql)函数在SQL Server中上传数据框,出现以下错误
[SQL Server Native Client 11.0]强制转换的字符值 规范(0)(SQLExecDirectW)')
我检查了变量的名称和类型,它们在SQL数据库和pandas数据框中是否完全相同。
我该如何解决? 谢谢
df.to_sql(raw_table, connDB, if_exists='append', index=False )