在使用to_sql写入数据库时,出现报错
sqlalchemy.exc.InternalError: (pymysql.err.InternalError) (1241, 'Operand should contain 1 column(s)')
是由于dataframe中存在值为列表的情况,需要将列表转为字符串
df.loc[:, ‘xxxx’] = df_main[‘xxxx’].astype(str)
在使用to_sql写入数据库时,出现报错
sqlalchemy.exc.InternalError: (pymysql.err.InternalError) (1241, 'Operand should contain 1 column(s)')
是由于dataframe中存在值为列表的情况,需要将列表转为字符串
df.loc[:, ‘xxxx’] = df_main[‘xxxx’].astype(str)