Python Mysql 简明教程

Python & MySQL - Update Records Example

Python 使用 c.execute(q) 功能从一个表格中更新记录,其中 c 是游标,q 是要执行的更新查询。

Syntax

# execute SQL query using execute() method.
cursor.execute(sql)

cursor.commit()

# get the record count updated
print(mycursor.rowcount, "record(s) affected")

Sr.No.

Parameter & Description

1

$sql 必填 - 用来更新表中记录的 SQL 查询。

Example

尝试以下示例来更新表中的记录 −

复制并粘贴以下示例作为 mysql_example.ty -

#!/usr/bin/python

import MySQLdb

# Open database connection
db = MySQLdb.connect("localhost","root","root@123", "TUTORIALS")

# prepare a cursor object using cursor() method
cursor = db.cursor()

sql = "UPDATE tutorials_tbl set tutorial_title = "Learning Java" where tutorial_id = 2"

# execute SQL query using execute() method.
cursor.execute(sql)

db.commit()

# get the record count updated
print(cursor.rowcount, " record(s) affected")

# disconnect from server
db.close()

Output

使用 Python 执行 mysql_example.py 脚本并验证输出。

1 record(s) affected