Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Wie rufe ich Tabellennamen in einer MySQL-Datenbank mit Python und MySQLdb ab?

Um etwas vollständiger zu sein:

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)

Jetzt gibt es zwei Möglichkeiten:

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

oder über den Cursor iterieren:

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