sql >> Base de Datos >  >> RDS >> Mysql

¿Cómo recuperar nombres de tablas en una base de datos mysql con Python y MySQLdb?

Para ser un poco más completo:

import MySQLdb

connection = MySQLdb.connect(
                host = 'localhost',
                user = 'myself',
                passwd = 'mysecret')  # create the connection

cursor = connection.cursor()     # get the cursor


cursor.execute("USE mydatabase") # select the database

cursor.execute("SHOW TABLES")    # execute 'SHOW TABLES' (but data is not returned)

ahora hay dos opciones:

tables = cursor.fetchall()       # return data from last query

o iterar sobre el cursor:

 for (table_name,) in cursor:
        print(table_name)