第四章 数据储存——JSON、CSV、Excel、MySQL(十五) 2020-01-16

十四、 MySQL数据库– 数据库删除操作



cursor = db.cursor()

sql = """

delete from user where id = 1

"""

cursor.execute(sql)

db.commit()

db.close()



示例代码

import pymysql

 

db = pymysql.connect(host="localhost", port=3306, user="root",password="root", database="csdn_crawler")

cursor = db.cursor()

 

# delete from [表名] 条件

sql = "delete from article where id>4"

cursor.execute(sql)

 

db.commit()

db.close()



上一篇文章 第四章 数据储存——JSON、CSV、Excel、MySQL(十四) 2020-01-15 地址:

https://www.jianshu.com/p/42e62068975e

下一篇文章 第四章 数据储存——JSON、CSV、Excel、MySQL(十六) 2020-01-17 地址:

https://www.jianshu.com/p/04c53d38b714



以上资料内容来源网络,仅供学习交流,侵删请私信我,谢谢。

你可能感兴趣的:(第四章 数据储存——JSON、CSV、Excel、MySQL(十五) 2020-01-16)