How to DELETE data from a MySQL database in WordPress

A guide on how to use Prepared Statements in WordPress to delete data from a MySQL database safely and effectively.

In this article, you will learn how to use Prepared Statements in WordPress to execute a DELETE statement, allowing you to remove records from tables in the WordPress database using multiple parameters.

global $wpdb;

// DELETE statement with Prepared Statement
$delete_query = $wpdb->prepare("DELETE FROM wp_students WHERE id = %d AND name = %s", $id, $name);

// Execute the DELETE statement
$result = $wpdb->query($delete_query);

// Check the number of records deleted
if ($result) {
    echo "$result record(s) deleted.";
} else {
    echo "No records were deleted.";
}

Detailed explanation:

  1. global $wpdb;: Uses the global $wpdb object in WordPress to interact with the database.
  2. $delete_query = $wpdb->prepare(...): Creates the DELETE statement with parameters, where %d and %s represent integer and string data types, respectively.
  3. $result = $wpdb->query($delete_query);: Executes the DELETE statement and stores the result (number of records deleted).
  4. if ($result) {...}: Checks if any records were deleted and prints the appropriate message.

System Requirements:

  • A running WordPress installation (latest version recommended).
  • Access to the MySQL database used by WordPress.

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

No additional libraries are needed, as $wpdb is a built-in object in WordPress.

Tips:

  • Always back up your database before performing DELETE operations to prevent loss of important data.
  • Carefully check input parameters to ensure you do not accidentally delete unintended data.
  • Use Prepared Statements to protect against SQL injection attacks.


Related

How to INSERT data into a MySQL database in WordPress

A guide on how to use Prepared Statements in WordPress to safely and effectively insert data into a MySQL database.
JSON Web Token (JWT) Authentication in WordPress

A comprehensive guide on integrating JSON Web Token (JWT) authentication into WordPress. Learn how to secure WordPress REST API and use JWT to manage user login sessions.
Creating Captcha for Contact Form in WordPress

A detailed guide on how to add Captcha to the contact form in WordPress to protect your website from spam and automated bots.
Detailed guide on how to add Google OAuth login functionality in Wordpress

This article provides a detailed guide on how to integrate Google OAuth login functionality into Wordpress, allowing users to log in to your website using their Google accounts conveniently and securely.
A Comprehensive Guide to Creating a WordPress Plugin

This article provides a step-by-step guide on how to create a WordPress plugin, including the basic structure, coding, and installing the plugin. You will learn how to extend the functionality of your WordPress site through plugin development.
Step-by-step guide to creating Facebook OAuth login functionality in WordPress

A detailed guide on how to integrate Facebook OAuth login functionality in WordPress, covering steps from creating a Facebook Developer app to configuring a supporting plugin in WordPress.
How to send Authentication Header Token when POSTing data to API from WordPress

A guide on how to send data to an API from WordPress using the POST method and pass an Authentication Header Token for security. This article provides detailed instructions on how to configure and send an HTTP request.
How to SELECT data from a MySQL database in WordPress

A guide on how to use Prepared Statements in WordPress to query data from a MySQL database safely and effectively.
How to UPDATE data in a MySQL database of WordPress

A guide on how to use Prepared Statements in PHP to update data in the MySQL database of WordPress safely and effectively.
Complete Guide on How to Create a WordPress Theme

This article guides you step-by-step on creating a WordPress theme from scratch, including folder structure, necessary files, and how to customize the interface for your website.

main.add_cart_success