借助SHOW TABLES From Database_name查詢,我們可以看到另一個資料庫的表。這裡Database_name是我們目前沒有使用的資料庫的名稱。考慮以下範例,其中我們執行查詢以取得資料庫名稱「tutorial」中的表格清單。
mysql> show tables from tutorial; +--------------------+ | Tables_in_tutorial | +--------------------+ | employee | | showzerofill | | student | +--------------------+ 3 rows in set (0.00 sec)
以上是連接到一個MySQL資料庫時,如何查看其他MySQL資料庫的表格清單?的詳細內容。更多資訊請關注PHP中文網其他相關文章!