在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)

以上是 在MySQL中使用SELECT语句获取表名? 的全部内容, 来源链接: utcz.com/z/330930.html

回到顶部