要使用 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 語句獲取表名?的詳細內容,更多請關注www.92cms.cn其它相關文章!