更新操作用于更新數(shù)據(jù)表的的數(shù)據(jù),以下實(shí)例將 EMPLOYEE 表中的 SEX 字段為 'M' 的 AGE 字段遞增 1:
import MySQLdb
db = MySQLdb.connect("localhost", "testuser", "test123", "TESTDB", charset='utf8' )
cursor = db.cursor()
sql = "UPDATE EMPLOYEE SET AGE = AGE + 1 WHERE SEX = '%c'" % ('M')
try:
cursor.execute(sql)
db.commit()
except:
db.rollback()
db.close()