怎么查看数据库里有哪些表(怎么查看某个数据库中有哪些表)
使用select命令,可以查询所有表名 写法如下select table_name from information_schematables where table_schema=#39当前数据库#39。
USE information_schema Mysql 一个数据库所有有数据的表SELECT table_schema,table_name,table_rows FROM TABLES WHERE TABLE_SCHEMA=#39test#39AND table_rows != 0 ORDER BY table_rows DESC Mysql 一个数据库中。
show databasesuse studentshow tables2选择student数据库中的一张表stu_score,查看数据库表数据,并利用explain分析数据库表,如下图所示select * from stu_scoreexplain select * from stu_score3查看数据库。