如何在当前使用的数据库中查看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)
上述结果集显示了表以及表类型,即它是基本表还是视图。
广告