How to DELETE data from a MySQL database using Node.js

A guide on how to use Prepared Statements in Node.js 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 Node.js with Prepared Statements to execute a DELETE statement, allowing you to remove records from a table in the database using multiple parameters.

const mysql = require('mysql');

// Create a connection to the MySQL database
const connection = mysql.createConnection({
    host: 'localhost',
    user: 'root',
    password: 'password',
    database: 'test_db'
});

// Connect to the database
connection.connect((err) => {
    if (err) throw err;
    console.log('Connected to the database!');
});

// DELETE statement with Prepared Statement
const deleteQuery = 'DELETE FROM students WHERE id = ? AND name = ?';
const params = [1, 'John Doe'];

// Execute the DELETE statement
connection.query(deleteQuery, params, (error, results) => {
    if (error) throw error;
    console.log(`${results.affectedRows} record(s) deleted.`);
});

// Close the connection
connection.end();

Detailed explanation:

  1. const mysql = require('mysql');: Imports the mysql library for connecting and interacting with MySQL.
  2. const connection = mysql.createConnection(...): Creates a connection to the MySQL database with details such as host, user, password, and database.
  3. connection.connect(...): Connects to the database and checks for connection errors.
  4. const deleteQuery = 'DELETE FROM students WHERE id = ? AND name = ?';: Defines the DELETE statement with specified parameters.
  5. const params = [1, 'John Doe'];: Declares the parameter values to be passed into the DELETE statement.
  6. connection.query(deleteQuery, params, ...): Executes the DELETE statement with the specified parameters.
  7. console.log(${results.affectedRows} record(s) deleted.);: Prints the number of records that were deleted.
  8. connection.end();: Closes the connection to the database.

System Requirements:

  • Node.js version 14.x or higher
  • Library: mysql

How to install the libraries needed to run the Node.js code above:

Use npm to install the library:

npm install mysql

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

Common Functions Used with Selenium Chrome in Node.js

This article lists common functions used when working with Selenium and Chrome in Node.js. These methods are essential for automating testing processes and interactions within the browser.
Create a Simple Chat Application Using Socket.IO in Node.js

A detailed guide on how to create a simple chat application using Socket.IO in Node.js, allowing users to send and receive messages in real-time.
How to Post data to API Using Node.js

This article guides you on how to send JSON data to an API using the axios library in Node.js, making it easy to perform POST requests to a web service.
How to Sign In with raw password when password stored in the database is hashed in Node.js

A guide on how to authenticate users signing in by comparing a raw password with the hashed password stored in the database. It demonstrates using `bcrypt` in Node.js to check if the raw password matches the hashed one.
Guide to creating a multi-image upload form with Node.js

A step-by-step guide on how to create a multi-image upload form in Node.js using the `Multer` library for file handling and `Express` for server creation.
Writing data to an Excel file using Node.js

A guide on how to write data to an Excel file using Node.js, employing the ExcelJS library for efficient and effective Excel file manipulation.
How to Get JSON Data from API Using Node.js

This article guides you on how to retrieve JSON data from an API using the https module in Node.js, helping you better understand how to interact with web services.
Guide to Reading Excel Files Using Node.js

A comprehensive guide on how to read content from Excel files (.xlsx, .xls) using Node.js, utilizing the xlsx library with step-by-step installation and illustrative examples.
How to INSERT data into a MySQL database using Node.js

A guide on how to use Prepared Statements in Node.js to insert data into a table in a MySQL database safely and effectively with multiple parameters.
How to convert a Markdown string to HTML using Node.js

A detailed guide on how to convert a Markdown string to HTML in Node.js using the `marked` library.

main.add_cart_success