| |
|
开发:
C++知识库
Java知识库
JavaScript
Python
PHP知识库
人工智能
区块链
大数据
移动开发
嵌入式
开发工具
数据结构与算法
开发测试
游戏开发
网络协议
系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程 数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁 |
-> 大数据 -> 【数据处理】pandas读取sql数据 -> 正文阅读 |
|
[大数据]【数据处理】pandas读取sql数据 |
作者:recommend-item-box type_blog clearfix |
主要使用两个pandas方法: 1、read_sql pandas.read_sql(sql, con, index_col=None, coerce_float=True, params=None, parse_dates=None, columns=None, chunksize=None) 效果:将SQL查询或数据库表读入DataFrame。 此功能是一个方便的包装和 (为了向后兼容)。它将根据提供的输入委派给特定的功能。SQL查询将被路由到,而数据库表名将被路由到。请注意,委派的功能可能有更多关于其功能的特定说明,此处未列出。 参数:?? ? SQL query to be executed or a table name. 要执行的SQL查询或表名。 con : SQLAlchemy connectable (engine/connection) or database string URI or DBAPI2 connection (fallback mode) Using SQLAlchemy makes it possible to use any DB supported by that library. If a DBAPI2 object, only sqlite3 is supported. 或DBAPI2连接(后备模式) 使用SQLAlchemy可以使用该库支持的任何数据库。如果是DBAPI2对象,则仅支持sqlite3。 index_col : string or list of strings, optional, default: None Column(s) to set as index(MultiIndex). 要设置为索引的列(MultiIndex)。 coerce_float : boolean, default True Attempts to convert values of non-string, non-numeric objects (like decimal.Decimal) to floating point, useful for SQL result sets. 尝试将非字符串,非数字对象(如decimal.Decimal)的值转换为浮点,这对SQL结果集很有用。 params : list, tuple or dict, optional, default: None List of parameters to pass to execute method. The syntax used to pass parameters is database driver dependent. Check your database driver documentation for which of the five syntax styles, described in PEP 249’s paramstyle, is supported. Eg. for psycopg2, uses %(name)s so use params={‘name’ : ‘value’} parse_dates : list or dict, default: None List of column names to parse as dates. Dict of {column_name: format string} where format string is strftime compatible in case of parsing string times, or is one of (D, s, ns, ms, us) in case of parsing integer timestamps. Dict of {column_name: arg dict}, where the arg dict corresponds to the keyword arguments of pandas.to_datetime() Especially useful with databases without native Datetime support, such as SQLite. columns : list, default: None List of column names to select from SQL table (only used when reading a table). 从SQL表中选择的列名列表(仅在读取表时使用)。 chunksize : int, default None If specified, return an iterator where chunksize is the number of rows to include in each chunk. 如果指定,则返回一个迭代器,其中chunksize是要包含在每个块中的行数。 Returns:?? ? 使用案例 2、read_sql_table pandas.read_sql_table(table_name, con, schema=None, index_col=None, coerce_float=True, parse_dates=None, columns=None, chunksize=None)[source] 效果:将SQL数据库表读入DataFrame。 给定一个表名和一个SQLAlchemy可连接,返回一个DataFrame。此功能不支持DBAPI连接。 Parameters:?? ? Name of SQL table in database. 数据库中SQL表的名称。 con : SQLAlchemy connectable (or database string URI) SQLite DBAPI connection mode not supported. 不支持SQLite DBAPI连接模式。 schema : string, default None Name of SQL schema in database to query (if database flavor supports this). Uses default schema if None (default). 要查询的数据库中的SQL模式的名称(如果数据库flavor支持此功能)。如果为None(默认值),则使用默认架构。 index_col : string or list of strings, optional, default: None Column(s) to set as index(MultiIndex). 要设置为索引的列(MultiIndex)。 coerce_float : boolean, default True Attempts to convert values of non-string, non-numeric objects (like decimal.Decimal) to floating point. Can result in loss of Precision. 尝试将非字符串,非数字对象(如decimal.Decimal)的值转换为浮点值。可能导致精度损失。 parse_dates : list or dict, default: None List of column names to parse as dates. Dict of {column_name: format string} where format string is strftime compatible in case of parsing string times or is one of (D, s, ns, ms, us) in case of parsing integer timestamps. Dict of {column_name: arg dict}, where the arg dict corresponds to the keyword arguments of pandas.to_datetime() Especially useful with databases without native Datetime support, such as SQLite. columns : list, default: None List of column names to select from SQL table 从SQL表中选择的列名列表 chunksize : int, default None If specified, returns an iterator where chunksize is the number of rows to include in each chunk. 如果指定,则返回一个迭代器,其中chunksize是要包含在每个块中的行数。 Returns:?? ? 使用案例 |
|
|
上一篇文章 下一篇文章 查看所有文章 |
|
开发:
C++知识库
Java知识库
JavaScript
Python
PHP知识库
人工智能
区块链
大数据
移动开发
嵌入式
开发工具
数据结构与算法
开发测试
游戏开发
网络协议
系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程 数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁 |
360图书馆 购物 三丰科技 阅读网 日历 万年历 2025年1日历 | -2025/1/16 3:39:01- |
|
网站联系: qq:121756557 email:121756557@qq.com IT数码 |