要使用 SELECT 語句取得表格名稱,請使用「information_schema.tables」。讓我們來看一個例子,其中我們有一個包含 3 個表的資料庫。使用 SELECT 語句取得所有表格名稱的語法。
SELECT Table_name as TablesName from information_schema.tables where table_schema = 'yourDatabaseName';
使用資料庫“test”,並應用上述語法使用 SELECT 取得表名
mysql> use test; Database changed mysql> SELECT Table_name as TablesName from information_schema.tables where table_schema = 'test';
輸出三個表的名稱。
+--------------------+ | TablesName | +--------------------+ | destination | | myisamtoinnodbdemo | | originaltable | +--------------------+ 3 rows in set (0.00 sec)
以上是在 MySQL 中使用 SELECT 語句取得表名?的詳細內容。更多資訊請關注PHP中文網其他相關文章!