How to SELECT data from a MySQL database using Python

A guide on how to connect and query data from a MySQL database using Python and the mysql-connector-python library.

In this article, you'll learn how to connect to a MySQL database and use Python to perform a SELECT query, retrieving data from a table within the database.

import mysql.connector

# Connect to the MySQL database
conn = mysql.connector.connect(
    host="localhost",
    user="root",
    password="password",
    database="test_db"
)

# Create a cursor object
cursor = conn.cursor()

# Execute a SELECT query
cursor.execute("SELECT * FROM students")

# Fetch all rows from the query result
rows = cursor.fetchall()

# Print the data
for row in rows:
    print(row)

# Close the connection
cursor.close()
conn.close()

Detailed explanation:

  1. import mysql.connector: Imports the mysql.connector library to allow MySQL connections.
  2. conn = mysql.connector.connect(...): Connects to the MySQL database using connection details such as host, user, password, and database.
  3. cursor = conn.cursor(): Creates a cursor object to execute SQL queries.
  4. cursor.execute("SELECT * FROM students"): Executes the SQL query to select all rows from the students table.
  5. rows = cursor.fetchall(): Fetches all results from the query.
  6. for row in rows: print(row): Iterates through and prints each row of data.
  7. cursor.close() and conn.close(): Closes the cursor and the connection to the database.

System Requirements:

  • Python 3.x
  • Library: mysql-connector-python

How to install the libraries needed to run the Python code above:

Use pip to install the library:

pip install mysql-connector-python

Tips:

  • Make sure your MySQL server is running before attempting to connect.
  • Double-check your connection details like host, user, password, and database to avoid connection errors.


Related

How to Post Data to API Using Python

This article guides you on how to send data to an API using the POST method in Python with the requests library, helping you better understand how to interact with web services.
How to rename columns in Pandas using a list in Python

A guide on how to rename columns in a Pandas DataFrame using a list of new names. This makes it easy to update or change column names when working with data in Python.
Comprehensive Guide to Using the print() Function in Python

A detailed guide on all the ways to use the print() function in Python, covering formatting options, parameters, and advanced usage.
How to automatically log into a website using Selenium with Chrome in Python

A guide on how to use Selenium in Python to automate logging into a website using Chrome. This tutorial includes step-by-step instructions and a complete Python script.
Guide to Creating a Python Application Interface with PyQT6

A detailed guide on how to create a simple application interface using PyQT6 in Python, with installation steps and code explanations.
How to DELETE data from a MySQL database using Python

A guide on how to use Prepared Statements in Python to delete data from a table in a MySQL database safely and effectively.
Guide to Creating a Registration Form in Python Using PyQT6

A detailed guide on how to create a registration form in Python using PyQT6, including how to add input fields and handle the registration button event.
Convert Markdown string to HTML using Python

A guide on how to convert a Markdown string to HTML using Python with the `markdown2` library, making it easy to integrate this conversion feature into your application.
How to GET JSON data from API using Python

This article will guide you on how to use Python to send a GET request to an API and receive JSON data. You will learn how to work with necessary libraries and handle the data.
Remove green background from image using Python

Guide on how to use Python to remove green background (chroma key) from an image using the OpenCV library. This Python code helps in removing green backgrounds to replace it with another background or make it transparent.

main.add_cart_success