- 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 - 使用联结
- Python和MySQL - 执行事务
- Python和MySQL - 处理错误
- Python和MySQL - 有用资源
- Python和MySQL - 快速指南
- Python和MySQL - 有用资源
- Python和MySQL - 讨论
Python和MySQL - 删除记录示例
Python使用c.execute(q)函数从表格中删除记录,其中c是光标,而q是要执行的delete查询。
语法
# execute SQL query using execute() method. cursor.execute(sql) cursor.commit() # get the record count updated print(mycursor.rowcount, "record(s) affected")
Sr.编号。 | 参数和说明 |
---|---|
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 = "Delete from tutorials_tbl 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
广告