Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

การดำเนินการอัปเดตฐานข้อมูลใน Python


การดำเนินการ UPDATE บนฐานข้อมูลใดๆ หมายถึงการอัปเดตอย่างน้อยหนึ่งระเบียน ซึ่งมีอยู่ในฐานข้อมูลแล้ว

ขั้นตอนต่อไปนี้จะอัปเดตระเบียนทั้งหมดที่มี SEX เป็น 'M' ที่นี่เราเพิ่ม AGE ของผู้ชายทั้งหมดขึ้นหนึ่งปี

ตัวอย่าง

#!/usr/bin/python
import MySQLdb
# Open database connection
db = MySQLdb.connect("localhost","testuser","test123","TESTDB" )
# prepare a cursor object using cursor() method
cursor = db.cursor()
# Prepare SQL query to UPDATE required records
sql = "UPDATE EMPLOYEE SET AGE = AGE + 1
WHERE SEX = '%c'" % ('M')
try:
   # Execute the SQL command
   cursor.execute(sql)
   # Commit your changes in the database
   db.commit()
except:
   # Rollback in case there is any error
   db.rollback()
# disconnect from server
db.close()