博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python 之 pymysql增删改查Mysql数据库
阅读量:5947 次
发布时间:2019-06-19

本文共 790 字,大约阅读时间需要 2 分钟。

表结构:

Python 之 pymysql增删改查Mysql数据库

代码:

#Author Kangimport pymysql#连接方法conn = pymysql.connect(host='10.3.152.35',port=3306,user='kang',passwd='123456',db='test')#创建当前游标cursor = conn.cursor()#effect_row 为结果行数effect_row = cursor.execute("select * from student")#打印当前游标语句查询的结果print(cursor.fetchall())#建立需要插入的数据data = [    ('MM',33),    ('BearBear',4),    ('KK',10)]#执行插入多条语句cursor.executemany('insert into student(name,age) values(%s,%s)',data)#执行插入单条带变量的语句#data = cursor.execute("insert into user(username,age,department) values('{0}','{1}','{2}')".format(username,age,department))#提交语句conn.commit()#执行更新语句cursor.execute('update student set name="MK" where id = 1')conn.commit()#执行删除语句cursor.execute('delete from student where name = "KK"')conn.commit()cursor.close()conn.close()

转载于:https://blog.51cto.com/12965094/2361750

你可能感兴趣的文章
“蓝桥杯”软件大赛入门训练4道题
查看>>
Unable to get the CMake version located at
查看>>
爬虫基本原理
查看>>
Heritage from father
查看>>
css选择器
查看>>
使用多线程
查看>>
Django--Uploaded Files以及Handlers
查看>>
在IIS(64位)上部署WCF服务访问Oracle数据库
查看>>
个人在 laravel 开发中使用到的一些技巧(持续更新)
查看>>
iOS之KVO
查看>>
数组的代替品
查看>>
BZOJ-1878: [SDOI2009]HH的项链(莫队算法)
查看>>
Python3 定时访问网页
查看>>
两种算法解决查找子串的问题:hdu1711
查看>>
老板,让我们专注的工作【写给老板的一封信】
查看>>
LBS突围:从微信到微博
查看>>
SFB 项目经验-40-Skype for Business-呼入正常-呼出不正常
查看>>
吴忌寒江卓尔批“闪电网络”背后,是链圈和矿圈的的利益之争
查看>>
python的cls,self,classmethod,staticmethod
查看>>
应用系统中常见报表类型解析
查看>>