站长资讯网
最全最丰富的资讯网站

Python中的数据库解析

Python中数据库的使用:

#进入数据库

#进入文件夹

#查看

#退出文件夹

#关闭数据库

Python中的数据库解析

Python中的数据库解析

 

数据库的操作:

增:

sql = 'insert into 表名(列名1,列名2) values(%s,%s)'
params = ('要增加的列1内容','要增加的列2内容')
count = cur.execute(sql,params)

Python中的数据库解析

Python中的数据库解析

删:

sql = 'delete from 表名 where 列名 = %s'
params = (要删除的行对应列内容,)
recount = cur.execute(sql,params)

Python中的数据库解析

Python中的数据库解析

改:

sql = 'update 表名 set 列名2 = %s where 列名1 = %s'
params = ('对应行的列名2下的内容','要修改的行中含有的列内容')
recount = cur.execute(sql,params)

Python中的数据库解析

Python中的数据库解析

数据库的回滚:

赞(0)
分享到: 更多 (0)
网站地图   沪ICP备18035694号-2    沪公网安备31011702889846号