web-dev-qa-db-ja.com

PythonおよびMySQLdbを使用してmysqlデータベースのテーブル名を取得する方法は?

私はSQLデータベースを持っていて、そのデータベース内のテーブル名のリストを取得するためにどのコマンドを使用するのか疑問に思っています。

27
Richard

SHOWテーブル

15文字

8
Ty W

もう少し完全にするために:

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)

現在、2つのオプションがあります。

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

またはカーソルを繰り返します:

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

show tables 役立ちます。 ここにドキュメントがあります

7
Henning