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 can I connect to MySQL using Python?
- How do I access MySQL using Python?
- How can I connect Python to a MySQL database?
- How do I download MySQL-Python 1.2.5 zip file?
- How can I use Python and MySQL to generate a PDF?
- How can I use Python to make a MySQL request?
- How do I connect Python with MySQL using XAMPP?
- How do I insert NULL values into a MySQL table using Python?
- How can I use Yum to install the MySQLdb Python module?
- How can I use Python to retrieve data from MySQL?
See more codes...