Python-pymysql修改

import pymysql
zwy = pymysql.connect(host='localhost', user='root', password='123456789', db='world')
cursor = zwy.cursor()

zwy.commit()

update_sql = '''update student set sname = 'renji' where sid = %s'''
cursor.execute(update_sql, '06')
zwy.commit()
select_sql = 'select*from student'
cursor.execute(select_sql)
print(cursor.fetchall())
zwy.close()

 

温馨提示:本文最后更新于2024-06-11 09:29:13,某些文章具有时效性,若有错误或已失效,请在下方留言或联系站长
© 版权声明
THE END
喜欢就支持一下吧
点赞1 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情

    暂无评论内容