# 创建Connection连接
conn = connect(host=‘localhost‘, port=3306, user=‘root‘, password=‘mysql‘, database=‘python1‘, charset=‘utf8‘)
# 得Cursor对象
cs = conn.cursor()
# 更新
# sql = ‘update students set name="name" where id=1‘
# 删除
# sql = ‘delete from students where id=1‘
# 执行select语句,并返回受影响的行数:查询一条学生数据
sql = ‘select id,name from students where id = 7‘
# sql = ‘SELECT id,name FROM students WHERE id = 7‘
count=cs.execute(sql)
# 打印受影响的行数
print(count)
在 Python代码中操作mysql数据
Posted leedw
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在 Python代码中操作mysql数据相关的知识,希望对你有一定的参考价值。
以上是关于在 Python代码中操作mysql数据的主要内容,如果未能解决你的问题,请参考以下文章