How to UPDATE data in a MySQL database using Python

A guide on how to update data in a MySQL database using Python with the mysql-connector-python library.

In this article, you will learn how to use Python to connect to a MySQL database and perform an UPDATE query to modify data within a table.

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

# The UPDATE query to update data
sql = "UPDATE students SET name = %s WHERE id = %s"
values = ("Nguyen Van A", 1)

# Execute the query
cursor.execute(sql, values)

# Commit the changes to the database
conn.commit()

print(cursor.rowcount, "record(s) updated")

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

Detailed explanation:

  1. import mysql.connector: Imports the mysql.connector library for 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. sql = "UPDATE students SET name = %s WHERE id = %s": Constructs the UPDATE query with the necessary parameters.
  5. values = ("Nguyen Van A", 1): Defines the values to be used in the query.
  6. cursor.execute(sql, values): Executes the query with the specified values.
  7. conn.commit(): Saves the changes to the database.
  8. print(cursor.rowcount, "record(s) updated"): Prints the number of records updated.
  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:

  • Always double-check your SQL query to avoid unintended data modifications.
  • It's a good idea to test your UPDATE queries in a development environment before applying them to a production database.


Related

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.
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.
JSON Web Token (JWT) Authentication in Python

A guide on how to implement JSON Web Token (JWT) authentication in Python. This article covers how to generate and verify JWTs in a web application to secure APIs.
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.
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.
Creating video from images using OpenCV

A detailed guide on how to create a video from images using Python and the OpenCV library. The article includes source code and line-by-line explanations.
How to write data to an Excel file using Python

A guide on how to use Python to write data into an Excel file using the openpyxl library, making it easy to manage and handle Excel data in your projects.
Send Authentication Header Token when POSTing data to API using Python

A guide on how to send a POST request to an API with an Authentication Header Token using Python. This method is commonly used for authentication and security in API communication.
Trim image to remove whitespace using Python

Guide on using Python to trim whitespace around an image (trim image) using the OpenCV library. This Python code helps to crop out excess whitespace around an image to highlight the main content.
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`.

main.add_cart_success