“cara menghubungkan database mysql di jupyter notebook” Kode Jawaban

terhubung ke jupyter database mysql

# In the python cmd, install packages:
pip3 install pymysql
pip3 install ipython-sql
pip3 install mysqlclient

# in the jupyter notebook:
import pymysql
import pandas as pd

conn=pymysql.connect(host='localhost',port=int(3306),user='root',passwd='YOUR_PASSWORD',db='YOUR_DATABASENAME')

df=pd.read_sql_query("SELECT * FROM 'YOUR_TABLENAME' ",conn)

print(df)
Powerful Penguin

cara menghubungkan database mysql di jupyter notebook

# %%
%load_ext sql

# %%
%sql mysql+mysqldb://<user>:<password>@localhost/<dataBase>

# %%
%%sql

SELECT *
FROM <table>;
Dark Dormouse

Jawaban yang mirip dengan “cara menghubungkan database mysql di jupyter notebook”

Pertanyaan yang mirip dengan “cara menghubungkan database mysql di jupyter notebook”

Lebih banyak jawaban terkait untuk “cara menghubungkan database mysql di jupyter notebook” di Sql

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya