通过Python实现mysql查询数据库实例

Posted 文刀文刀

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过Python实现mysql查询数据库实例相关的知识,希望对你有一定的参考价值。

#coding:utf-8
‘‘‘
Created on 2017年10月25日

@author: li.liu
‘‘‘

import pymysql
db=pymysql.connect(‘localhost‘,‘root‘,‘root‘,‘test‘,charset=‘utf8‘)
m=db.cursor()
‘‘‘
try:
    #a=raw_input(‘请输入sql语句‘+‘\n‘)
    m.execute(‘select * from student‘)
    a=m.fetchall()
    b=m.description
    print b
    print a
    for i in range(len(a)):
        n=‘‘
        for j in range(len(b)):
            c=str(a[i][j])
            d=b[j][0].encode(‘utf-8‘)
            print ‘%s: %s\t‘%(d,c),
        print ‘\r‘
            
    
except:
    print ‘SQL语句错误,请检查‘
finally:
    db.close()
    
‘‘‘
while True:
    
    try:
        s=raw_input(‘请输入sql语句‘+‘\n‘)
        if s==‘exit‘:break
        m.execute(s)
        a=m.fetchall()
        b=m.description
        for i in range(len(a)):
            n=‘‘
            for j in range(len(b)):
                c=str(a[i][j])
                d=b[j][0].encode(‘utf-8‘)
                print ‘%s: %s\t‘%(d,c),
            print ‘\r‘
        print ‘\r‘
    except:
        print ‘SQL语句错误,请检查‘

  

 

以上是关于通过Python实现mysql查询数据库实例的主要内容,如果未能解决你的问题,请参考以下文章

7-MYSQL数据库读写分离实例

如何为mysql分片集群设置片键

Python使用MySQL查询数据导出Excel

Python系列之MySQL查询数据导出Excel

《自然语言处理实战入门》 文本检索 ---- 文本查询实例:ElasticSearch 配置ik 分词器及使用

python读取word文档,插入mysql数据库实例