如果需要查看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數據庫表的命令介紹。
MySQL服務器的內部鎖定
Mysql Merge表的優點
隨機獲取Mysql數據的方法
根據Mysql表備份
MySQL Show語句用法介紹