程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> 關於MYSQL數據庫 >> MySQL數據庫表的查看命令

MySQL數據庫表的查看命令

編輯:關於MYSQL數據庫

如果需要查看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='表名';

查看警告:

  1. Rows matched: 1  Changed: 0  Warnings: 1  
  2. MySQL> show warnings;  
  3. +---------+------+-------------------------------------------+  
  4. | Level   | Code | Message                                   |  
  5. +---------+------+-------------------------------------------+  
  6. | Warning | 1265 | Data truncated for column 'name' at row 3 |  
  7. +---------+------+-------------------------------------------+  
  8. 1 row in set  

以上就是查看MySQL數據庫表的命令介紹。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved