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.

In this article, you'll learn how to connect to a MySQL database and use Python with Prepared Statements to execute a DELETE statement, allowing you to remove records from a table in the database using multiple parameters.

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()

# DELETE statement with Prepared Statement
delete_query = "DELETE FROM students WHERE id = %s AND name = %s"
params = (1, 'John Doe')

# Execute the DELETE statement
cursor.execute(delete_query, params)

# Commit changes to the database
conn.commit()

# Print the number of records deleted
print(f"{cursor.rowcount} record(s) deleted.")

# 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. delete_query = "DELETE FROM students WHERE id = %s AND name = %s": Defines the DELETE statement with specified parameters.
  5. params = (1, 'John Doe'): Declares the parameter values to be passed into the DELETE statement.
  6. cursor.execute(delete_query, params): Executes the DELETE statement with the specified parameters.
  7. conn.commit(): Commits the changes to the database.
  8. print(f"{cursor.rowcount} record(s) deleted."): Prints the number of records that were deleted.
  9. 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.
  • Use Prepared Statements to protect against SQL injection attacks.


Related

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 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.
Creating video from images using MoviePy

A detailed guide on how to create a video from images using Python and the MoviePy library. The article includes source code and line-by-line explanations.
How to convert TensorFlow model from .pb to .h5

A detailed guide on how to convert a TensorFlow model from the Protocol Buffers (.pb) format to HDF5 (.h5) format, allowing for easy storage and loading of models for machine learning applications.
How to reverse a Series in Pandas

A guide on how to reverse a `Series` in Pandas, a popular Python library for data manipulation. This article explains various methods to reverse the order of elements in a `Series`.
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.
Guide to Reading Excel Files Using Python

A comprehensive guide on how to read content from Excel files (.xlsx, .xls) using Python, utilizing the openpyxl and pandas libraries with illustrative examples.
Guide to creating a multi-image upload form using Python

A comprehensive guide on how to create a multi-image upload form using Flask, a simple and effective Python framework.
How to open Notepad application using Python

This article explains how to use Python to open the Notepad application on Windows. This method is helpful when automating application launching tasks through Python code.
Commonly used functions in the Pandas library and how to use them

This article lists important functions in the Pandas library for Python and provides guidance on how to use them. Pandas is a powerful tool for data manipulation and analysis in Python.

main.add_cart_success