在 MySQL 中使用 SELECT 语句获取表名?

在 MySQL 中使用 SELECT 语句获取表名?

要使用 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)
原文来自:www.php.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞11 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容