pandas 如何知道将数据写入 SQL 表中的正确列?

How does pandas know to write the data to the correct column in a SQL table?

提问人:Lilcodemuffin 提问时间:11/10/2023 更新时间:11/10/2023 访问量:26

问:

我正在尝试弄清楚如何将查询结果输出到 SQL Server 表。我有这样写的代码,一些数据帧,一些打印语句,我想将它们输出到我的表中。

'''TABLE NAME COLUMN'''
df = pd.read_csv(f's3://bucket-name/{filename}', sep='|')
print(filename.split('.')[0])


'''CSV ROW COUNT COLUMN'''
numlines=len(df)
print(numlines) 


'''COLUMNS UNIQUE COLUMN'''
df_unique = df.set_index(unique_col_comb.split(", ")).index.is_unique 
print(df_unique)  

我知道我可以使用类似的东西,但我感到困惑,例如,它如何知道要输出到哪一列。df.to_sql('table_name', engine, if_exists='append')df_unique

python sql-server 熊猫

评论


答: 暂无答案