基于py3和pymysql的数据库查询,查询某几列的数据
Posted Xiao|Deng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基于py3和pymysql的数据库查询,查询某几列的数据相关的知识,希望对你有一定的参考价值。
#python3 #xiaodeng #基于py3和pymysql的数据库查询,查询某几列的数据 import pymysql conn=pymysql.connect(....) cur=conn.cursor() cur.execute("select name,age from nlist")
data=cur.fethall()
for name,age in data: print name,age conn.close() cur.close()
以上是关于基于py3和pymysql的数据库查询,查询某几列的数据的主要内容,如果未能解决你的问题,请参考以下文章
python的flask框架查询数据库,将数据库的某几列显示到web页面