如果需要查看MySQL數據庫中都有哪些MySQL數據庫表,應該如何實現呢?下面就為您介紹查看MySQL數據庫表的命令,供您參考。
進入MySQL Command line clIEnt下
查看當前使用的數據庫:
MySQL>select database();
MySQL>status;
MySQL>show tables;
MySQL>show databases;//可以查看有哪些數據庫,返回數據庫名(databaseName)
MySQL>use databaseName; //更換當前使用的數據庫
MySQL>show tables; //返回當前數據庫下的所有表的名稱
或者也可以直接用以下命令
MySQL>show tables from databaseName;//databaseName可以用show databases得來
MySQL查看表結構命令,如下:
desc 表名;
show columns from 表名;
或者
describe 表名;
show create table 表名;
或者
use information_schema
select * from columns where table_name='表名';
查看警告:
- Rows matched: 1 Changed: 0 Warnings: 1
- MySQL> show warnings;
- +---------+------+-------------------------------------------+
- | Level | Code | Message |
- +---------+------+-------------------------------------------+
- | Warning | 1265 | Data truncated for column 'name' at row 3 |
- +---------+------+-------------------------------------------+
- 1 row in set
以上就是查看MySQL數據庫表的命令介紹。