A connector is employed when we have to use MySQL with other programming languages. The work of MySQL-connector is to provide access to MySQL Driver to the required language. Thus, it generates a connection between the programming language and the MySQL Server.
Update Clause
The update is used to change the existing values in a database. By using update a specific value can be corrected or updated. It only affects the data and not the structure of the table.
The basic advantage provided by this command is that it keeps the table accurate.
Syntax:
UPDATE tablename
SET ="new value"
WHERE ="old value";
The following programs will help you understand this better.
DATABASE IN USE:

Example 1: Program to update the age of student named Rishi Kumar.
import mysql.connector
mydb = mysql.connector.connect(
host = 'localhost' ,
database = 'College' ,
user = 'root' ,
)
cs = mydb.cursor()
statement = "UPDATE STUDENT SET AGE = 23 WHERE Name ='Rishi Kumar'"
cs.execute(statement)
mydb.commit()
mydb.close()
|
Output:

Example 2: Program to correct the spelling of an Student named SK
import mysql.connector
mydb = mysql.connector.connect(
host = 'localhost' ,
database = 'College' ,
user = 'root' ,
)
cs = mydb.cursor()
statement = "UPDATE STUDENT SET Name = 'S.K. Anirban' WHERE Name ='SK Anirban'"
cs.execute(statement)
mydb.commit()
mydb.close()
|
Output:

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
09 Mar, 2020
Like Article
Save Article