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 convert a MySQL query result to a Python dictionary?
- How do I connect Python with MySQL using XAMPP?
- How do I download MySQL-Python 1.2.5 zip file?
- How can I connect to MySQL using Python?
- How do Python and MySQL compare to MariaDB?
- How can I access MySQL using Python?
- How can I use Python and MySQL to generate a PDF?
- How can I use Python and MySQL to create a login system?
- How can I use Python to interact with a MySQL database using YAML?
- How do I use Python to query MySQL with multiple conditions?
See more codes...