首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

python获取mysql数据库表名

Python获取MySQL数据库表名可以通过以下方式实现:

  1. 使用MySQL Connector/Python模块进行操作,具体步骤如下:
代码语言:txt
复制
import mysql.connector

# 连接数据库
cnx = mysql.connector.connect(user='username', password='password', host='host', database='database_name')

# 创建游标对象
cursor = cnx.cursor()

# 执行SQL查询语句
cursor.execute("SHOW TABLES")

# 获取结果集
tables = cursor.fetchall()

# 打印表名
for table in tables:
    print(table[0])

# 关闭游标和数据库连接
cursor.close()
cnx.close()

推荐的腾讯云相关产品:云数据库 MySQL

产品介绍链接地址:https://cloud.tencent.com/product/cdb

  1. 使用PyMySQL模块进行操作,具体步骤如下:
代码语言:txt
复制
import pymysql

# 连接数据库
cnx = pymysql.connect(host='host', port=port, user='username', password='password', db='database_name')

# 创建游标对象
cursor = cnx.cursor()

# 执行SQL查询语句
cursor.execute("SHOW TABLES")

# 获取结果集
tables = cursor.fetchall()

# 打印表名
for table in tables:
    print(table[0])

# 关闭游标和数据库连接
cursor.close()
cnx.close()

推荐的腾讯云相关产品:云数据库 MySQL

产品介绍链接地址:https://cloud.tencent.com/product/cdb

通过上述代码,我们可以获取到MySQL数据库中的所有表名,并打印输出。

页面内容是否对你有帮助?
有帮助
没帮助

相关·内容

领券