Create Pandas DataFrame from MySQL

Raymond Tang Raymond Tang 0 379 0.23 index 1/23/2021

Prerequisites

MySQL connector is required which will be used to establish connection to MySQL database. Refer to the following page for more details about installation.

Python: Load Data from MySQL

Code snippet

The following code snippet connects to a database named test_dbin server localhost (runs on port 10101) using user name 'hive' and password 'hive'.

warning Remember to change the connection details to your own ones.  

import mysql.connector
import pandas as pd 

conn = mysql.connector.connect(user='hive', database='test_db',
                               password='hive',
                               host="localhost",
                               port=10101)
cursor = conn.cursor()

query = "SELECT id, value FROM test_table"

df = pd.read_sql(query, con=conn)
print(df)
conn.close()
mysql pandas

Join the Discussion

View or add your thoughts below

Comments