如何在当前使用的数据库中检查 MySQL 表的列表,并在结果集中包含表类型?


可以使用 SHOW FULL TABLES 语句实现。其语法如下:

语法

SHOW FULL TABLES

示例

在以下示例中,我们当前的数据库是“query”,因此下面的语句将显示来自该数据库的表列表以及结果集中的表类型:

mysql> SHOW FULL TABLES;
+-----------------------------+------------+
| Tables_in_query             | Table_type |
+-----------------------------+------------+
| accounts                    | BASE TABLE |
| address                     | BASE TABLE |
| cars                        | BASE TABLE |
| cars_avgprice               | VIEW       |
| countries                   | BASE TABLE |
| customer_view               | VIEW       |
| customers                   | BASE TABLE |
| date_time_test              | BASE TABLE |
| detail_bday                 | BASE TABLE |
| details_city                | BASE TABLE |
.
.
.
| view_student_detail         | VIEW       |
| view_student_detail_columns | VIEW       |
| websites                    | BASE TABLE |
+-----------------------------+------------+
87 rows in set (0.01 sec)

以上结果集显示了表以及表类型,即它是 BASE TABLE 还是 VIEW。

更新于:2020-06-20

72 次浏览

启动你的 职业生涯

通过完成课程获得认证

开始学习
广告