python-mysqlHow do I use Python to select data from a MySQL database?
To use Python to select data from a MySQL database, you can use the mysql.connector module. This module provides an API for connecting to and interacting with a MySQL database.
Example code
import mysql.connector
# Connect to the database
db = mysql.connector.connect(
    host="localhost",
    user="user",
    passwd="password",
    database="mydatabase"
)
# Create a cursor object
cursor = db.cursor()
# Execute a query
cursor.execute("SELECT * FROM users")
# Fetch the results
result = cursor.fetchall()
# Print the results
print(result)
Output example
[(1, 'John', 'Doe', '[email protected]'), (2, 'Jane', 'Doe', '[email protected]')]
The code above can be broken down into the following parts:
- Import the 
mysql.connectormodule. - Connect to the database using 
mysql.connector.connect()and passing in the relevant connection details. - Create a cursor object using 
db.cursor(). - Execute a query using 
cursor.execute(). - Fetch the results using 
cursor.fetchall(). - Print the results.
 
Helpful links
More of Python Mysql
- How can I connect Python to a MySQL database?
 - How do I connect Python with MySQL using XAMPP?
 - How do I connect to XAMPP MySQL using Python?
 - How can I create a web application using Python and MySQL?
 - How can I use Python Kivy with MySQL?
 - How do Python and MySQL compare to MariaDB?
 - How can I set a timeout for a MySQL connection in Python?
 - How do I set up a secure SSL connection between Python and MySQL?
 - How can I convert a MySQL query result to a Python dictionary?
 - How do Python MySQL and SQLite compare in terms of performance and scalability?
 
See more codes...