Mysql
 sql >> Database >  >> RDS >> Mysql

Come recuperare i nomi delle tabelle in un database mysql con Python e MySQLdb?

Per essere un po' più completi:

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)

ora ci sono due opzioni:

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

oppure scorrere sul cursore:

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