How to DELETE data from a MySQL database using Golang

A guide on how to connect and delete data from a table in a MySQL database using the Golang programming language.

In this article, you'll learn how to connect to a MySQL database and use Golang to perform a DELETE query, allowing you to remove data from a specific table within the database.

package main

import (
	"database/sql"
	"fmt"
	"log"

	_ "github.com/go-sql-driver/mysql"
)

func main() {
	// Connect to the MySQL database
	db, err := sql.Open("mysql", "root:password@tcp(127.0.0.1:3306)/test_db")
	if err != nil {
		log.Fatal(err)
	}
	defer db.Close()

	// Prepared DELETE statement
	stmt, err := db.Prepare("DELETE FROM students WHERE id = ? OR age = ?")
	if err != nil {
		log.Fatal(err)
	}
	defer stmt.Close()

	// Execute the DELETE statement with multiple parameters
	res, err := stmt.Exec(1, 22)
	if err != nil {
		log.Fatal(err)
	}

	// Check how many rows were deleted
	rowsAffected, err := res.RowsAffected()
	if err != nil {
		log.Fatal(err)
	}

	fmt.Printf("%d rows were deleted.\n", rowsAffected)
}

Detailed explanation:

  1. sql.Open("mysql", "root:password@tcp(127.0.0.1:3306)/test_db"): Connects to the MySQL database using the specified user, password, and address details.
  2. db.Prepare("DELETE FROM students WHERE id = ? OR age = ?"): Creates a Prepared Statement for the DELETE query with two parameters id and age.
  3. stmt.Exec(1, 22): Executes the DELETE statement using the parameter values id = 1 and age = 22.
  4. res.RowsAffected(): Retrieves the number of rows that were deleted and prints the result.

System Requirements:

  • Golang 1.16 or higher
  • Library: github.com/go-sql-driver/mysql

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

Use the following command to install the MySQL driver library:

go get -u github.com/go-sql-driver/mysql

Tips:

  • Always use Prepared Statements to prevent SQL Injection.
  • Validate input parameters carefully before executing DELETE statements.


Related

How to Get JSON Data from API Using Golang

This article guides you on how to retrieve JSON data from an API using the Golang programming language, helping you better understand how to interact with web services.
Slices in Golang: Usage and examples

This article explains how to work with slices in Golang, including how to declare, access, and manipulate slices—a flexible way to handle arrays more efficiently in Go.
Common Functions When Using Selenium Chrome in Golang

This article compiles commonly used functions when working with Selenium Chrome in Golang, including installation, creating a session, navigating web pages, and interacting with page elements.
How to compare two slices of bytes in Golang

This article explains how to compare two byte slices in Golang. Golang provides built-in methods and libraries to easily and accurately compare two byte slices.
How to Post Data to API Using Golang

This article guides you on how to send data to an API using the POST method in Golang, helping you better understand how to interact with web services.
Create a Simple Chat Application Using Socket.IO in Golang

A step-by-step guide to building a simple chat application using Socket.IO in Golang, helping you understand how real-time communication works in web applications.
How to convert a Markdown string to HTML using Golang

A detailed guide on how to convert a Markdown string to HTML in Golang using the `blackfriday` library.
How to SELECT data from a MySQL database using Golang

A guide on how to use Golang to query data from a MySQL database using Prepared Statements with multiple parameters.
Send JavaScript code to a website using Golang and Selenium

A guide on how to use Selenium in Golang to send JavaScript code to a website on the Chrome browser. The article provides specific code and detailed explanations.
How to pass Authentication Header Token when POSTing data to an API using Golang

This guide explains how to pass an Authentication Header Token when making a POST request to an API using Golang. It covers handling HTTP requests, adding a token to the Header for authentication, and sending data to an API.

main.add_cart_success