首頁 >資料庫 >mysql教程 >連接到一個MySQL資料庫時,如何查看其他MySQL資料庫的表格清單?

連接到一個MySQL資料庫時,如何查看其他MySQL資料庫的表格清單?

王林
王林轉載
2023-09-15 22:49:06972瀏覽

連接到一個MySQL資料庫時,如何查看其他MySQL資料庫的表格清單?

借助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中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除