当前位置: 首页 > 图灵资讯 > 行业资讯> python执行数据库的查询操作

python执行数据库的查询操作

来源:图灵python
时间: 2024-06-11 17:22:49

1、fetchone获取下一个查询结果集。结果集是一个对象。

2、fetchall接收所有返回结果。

3、rowcount是一种只读属性,并在执行execute方法后返回行数。

实例

frompymysqlimport*


defmain():
#创建Conection连接
conn=connect(host='localhost',port=3306,user='root',password='mysql',database='jing_dong',charset='utf8')
#获得Cursor对象
cs1=conn.cursor()
#执行select语句,返回受影响的行数:查询数据
count=cs1.execute('selectid,namefromgoodswhereid>=4')
#打印受影响的行数
print("查询%d条数据:"%count)

foriinrange(count):
#获取查询结果
result=cs1.fetchone()
#打印查询结果
print(result)#元组(1,'张三',20,'男')
#获取查询结果

#关闭Cursor对象
cs1.close()
conn.close()


if__name__='__main__':
main()

以上是Python执行数据库的查询操作,希望对大家有所帮助。更多Python学习指导:基础教程python基础教程

本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。