pandas 连接数据库

pandas 连接数据库,第1张

pandas 连接数据库

mysql数据库

import numpy as np

import pandas as pd

from sqlalchemy import create_engine

from pyecharts.charts import *

from pyecharts import options as opts

engine = create_engine('mysql+pymysql://root:123456@localhost:3306/db?charset=utf8')

df = pd.read_sql('select * from db.house_info', engine)

df.to_sql('表名',engine,index=Flase,if_exists='replace')

hive数据库

import pandas as pd
import pyodbc

con = pyodbc.connect('DSN=hive',autocommit=True)
df = pd.read_sql('select * from edu.score ',con=con)
df

或者

import pandas as pd
from pyhive import hive
from sqlalchemy import create_engine

con = hive.Connection(host='10.36.142.186',
                       port=10000,
                       auth="NOSASL",
                       database='test',
                       username='root')
sql = 'select * from score'
df = pd.read_sql(sql,con)
print(df)

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4827796.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-10
下一篇 2022-11-10

发表评论

登录后才能评论

评论列表(0条)

保存