使用数据库"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)

相关文章


打印 下一节 ❯❮ 上一节