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.connector
module. - 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 do I connect Python with MySQL using XAMPP?
- How can I use Python and MySQL to generate a PDF?
- How can I connect to MySQL using Python?
- How can I use Python and MySQL to create a login system?
- How can I connect Python to a MySQL database?
- How do I use Python to show the MySQL processlist?
- How can I connect Python to a MySQL database using an Xserver?
- How can I troubleshoot a Python MySQL OperationalError?
- How do I check the version of MySQL I am using with Python?
- How do I use Python to handle MySQL NULL values?
See more codes...