Python 操作mysql数据库查询之fetchone(), fetchmany(), fetchall()用法示例
人气:2本文实例讲述了Python 操作mysql数据库查询之fetchone(), fetchmany(), fetchall()用法。分享给大家供大家参考,具体如下:
demo.py(查询,取出一条数据,fetchone):
from pymysql import * def main(): # 创建Connection连接 conn = connect(host='localhost',port=3306,user='root',password='mysql',database='jing_dong',charset='utf8') # 获得Cursor对象 cs1 = conn.cursor() # 执行select语句,并返回受影响的行数:查询一条数据 count = cs1.execute('select id,name from goods where id>=4') # 打印受影响的行数 print("查询到%d条数据:" % count) for i in range(count): # 获取查询的结果 result = cs1.fetchone() # 打印查询的结果 print(result) # 元组 (1, '张三', 20, '男') # 获取查询的结果 # 关闭Cursor对象 cs1.close() conn.close() if __name__ == '__main__': main()
demo.py(查询,取出多条数据,fetchmany,fetchall):
from pymysql import * def main(): # 创建Connection连接 conn = connect(host='localhost',port=3306,user='root',password='mysql',database='jing_dong',charset='utf8') # 获得Cursor对象 cs1 = conn.cursor() # 执行select语句,并返回受影响的行数:查询一条数据 count = cs1.execute('select id,name from goods where id>=4') # 打印受影响的行数 print("查询到%d条数据:" % count) # for i in range(count): # # 获取查询的结果 # result = cs1.fetchone() # 取出一条记录,返回元组。 # # 打印查询的结果 # print(result) # # 获取查询的结果 # 获取所有记录 result = cs1.fetchall() # fetchmany(3) 取出3条记录,返回二维元组。 print(result) # 二维元组 # 关闭Cursor对象 cs1.close() conn.close() if __name__ == '__main__': main()
希望本文所述对大家Python程序设计有所帮助。
您可能感兴趣的文章:
- python使用多线程查询数据库的实现示例
- python pymysql链接数据库查询结果转为Dataframe实例
- Python flask框架实现查询数据库并显示数据
- Python的Django框架实现数据库查询(不返回QuerySet的方法)
- python中数据库like模糊查询方式
- python针对mysql数据库的连接、查询、更新、删除操作示例
- Python编写通讯录通过数据库存储实现模糊查询功能
- Python操作mongodb数据库进行模糊查询操作示例
- Python实现的查询mysql数据库并通过邮件发送信息功能
- 跟老齐学Python之使用Python查询更新数据库
- python制作一个简单的gui 数据库查询界面
加载全部内容