Python:查询 mysql 的所有表和字段 -> pymysql 演示

#!/usr/bin/python
# -*- coding: UTF-8 -*-
import pymysql

# 查询所有字段
def list_col(localhost, username, password, database, tabls_name):
    db = pymysql.connect(localhost, username, password, database, charset="utf8")
    cursor = db.cursor()
    cursor.execute("select * from %s" % tabls_name)
    col_name_list = [tuple[0] for tuple in cursor.description]
    db.close()
    return col_name_list

# 列出所有的表
def list_table(localhost, username, password, database):
    db = pymysql.connect(localhost, username, password, database, charset="utf8")
    cursor = db.cursor()
    cursor.execute("show tables")
    table_list = [tuple[0] for tuple in cursor.fetchall()]
    db.close()
    return table_list


username = "root" # 用户名
password = "root" # 连接密码
localhost = "localhost" # 连接地址
database = "school" # 数据库名
tables = list_table(localhost, username, password, database) # 获取所有表,返回的是一个可迭代对象
print(tables) 

for table in tables:
    col_names = list_col(localhost, username, password, database, table)
    print(col_names) # 输出所有字段名
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值