1. 程式人生 > >查詢mysql表結構命令

查詢mysql表結構命令

方法1:

desc 表名;

方法2:

show columns from 表名;

方法3:

describe 表名;

方法4:

show create table 表名;
# 此命令是實時反映當前表結構,不是說後期改了表結構了,它就不變的

show create table alert;
CREATE TABLE `alert` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `model` varchar(20) NOT NULL DEFAULT '',
  `stat` int(11) NOT NULL DEFAULT '0'
, `level` int(11) NOT NULL DEFAULT '0', `msg` varchar(1000) NOT NULL DEFAULT '', `target` varchar(50) NOT NULL DEFAULT '', `create_time` datetime NOT NULL, `end_time` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 # 我加一個欄位 alter table `alert` Add column ss int
not null default 0;
show create table alert; CREATE TABLE `alert` ( `id` int(11) NOT NULL AUTO_INCREMENT, `model` varchar(20) NOT NULL DEFAULT '', `stat` int(11) NOT NULL DEFAULT '0', `level` int(11) NOT NULL DEFAULT '0', `msg` varchar(1000) NOT NULL DEFAULT '', `target` varchar(50) NOT NULL DEFAULT
'', `create_time` datetime NOT NULL, `end_time` datetime NOT NULL, `ss` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 # 發現多了‘ss’欄位的說明了把

還有一種情況是以上方法都不適用的:資料庫裡的表名是資料庫命令的關鍵字。

desc databases;
# 表名叫‘databases’,錯誤資訊如下,這時候想查表結構,要用方法5
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'databases' at line 1

方法5:

select * from information_schema.columns where table_schema = '庫名' and table_name = '表名';

方法6:

使用第三方視覺化工具,網上很多