- Python 及 MySQL 教程
- Python 及 MySQL - 首页
- Python 及 MySQL - 概览
- Python 及 MySQL - 环境设置
- Python 及 MySQL 示例
- Python 及 MySQL - 连接数据库
- Python 及 MySQL - 创建数据库
- Python 及 MySQL - 删除数据库
- Python 及 MySQL - 选择数据库
- Python 及 MySQL - 创建数据表
- Python 及 MySQL - 删除数据表
- Python 及 MySQL - 插入记录
- Python 及 MySQL - 选择记录
- Python 及 MySQL - 更新记录
- Python 及 MySQL - 删除记录
- Python 及 MySQL - Where 从句
- Python 及 MySQL - Like 从句
- Python 及 MySQL - 排序数据
- Python 及 MySQL - 使用 JOIN
- Python 及 MySQL - 执行事务
- Python 及 MySQL - 处理错误
- Python 及 MySQL 实用资源
- Python 及 MySQL - 快速指南
- Python 及 MySQL - 实用资源
- Python 及 MySQL - 讨论
Python 及 MySQL - 更新记录示例
Python 使用 c.execute(q) 函数更新数据表中的记录,其中 c 是游标,q 是要执行的更新查询。
语法
# execute SQL query using execute() method. cursor.execute(sql) cursor.commit() # get the record count updated print(mycursor.rowcount, "record(s) affected")
序号 | 参数及说明 |
---|---|
1 | $sql 必需 - 用于更新数据表中的记录的 SQL 查询。 |
示例
尝试以下示例来更新数据表中的记录 -
将以下示例复制粘贴为 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()
输出
使用 python 执行 mysql_example.py 脚本,并验证输出。
1 record(s) affected
广告