Python-pymysql删除

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

zwy.commit()

delete_sql = 'delete from student where sname=%s'
cursor.execute(delete_sql, 'renji')
select_sql = '''select*from student;'''
cursor.execute(select_sql)
zwy.commit()
print(cursor.fetchall())
zwy.close()

 

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

昵称

取消
昵称表情

    暂无评论内容