私はSQLデータベースを持っていて、そのデータベース内のテーブル名のリストを取得するためにどのコマンドを使用するのか疑問に思っています。
SHOWテーブル
15文字
もう少し完全にするために:
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)
show tables
役立ちます。 ここにドキュメントがあります 。