檢視MySQL資料庫的命令

坦GA發表於2017-06-03

原文地址:http://database.51cto.com/art/201011/234471.htm

檢視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
 


相關文章