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.
我正在尝试pandas.read_sql通过使用 pyodbc 驱动程序在 Python 中使用方法来读取存储过程。我遇到的问题是当 Pandas 读取数据时,它会将int列转换为float其中包含 Null 值的列。
pandas.read_sql
int
float
有没有办法通过应用一些配置或挂钩一些自定义转换器来填充 pyodbc 驱动程序中的那些空值?
我不想在 SQL 级别或通过 pandas 阅读它时更改它。