資料庫 MySQL檢視資料結構簡單命令

2021-09-19 11:35:56 字數 2132 閱讀 7760

一、簡單描述表結構,字段型別

desc tabl_name;

顯示表結構,字段型別,主鍵,是否為空等屬性,但不顯示外來鍵。

例如:desc table_name

二、查詢表中列的注釋資訊

select * from information_schema.columns

where table_schema = 'db' #表所在資料庫

and table_name = 'tablename' ; #你要查的表

例如:

可以自動選擇你需要資訊

三、只查詢列名和注釋

select column_name, column_comment from information_schema.columns where table_schema ='db' and table_name = 'tablename' ;

例如:

四、#檢視表的注釋

select table_name,table_comment from information_schema.tables where table_schema = 'db' and table_name ='tablename'

例如:

五、檢視表生成的ddl

show create table table_name;

例如:

這個命令雖然顯示起來不是太容易看, 這個不是問題可以用\g來結尾,使得結果容易閱讀;該命令把建立表的ddl顯示出來,於是表結構、型別,外來鍵,備註全部顯示出來了。

我比較喜歡這個命令:輸入簡單,顯示結果全面。

補充一些可能用到的命令:

建表命令:

create table `t_sold_order` (

`id` int(11) not null auto_increment,

`dt` date default null comment '日期',

`hour` tinyint(2) default '0' comment '小時',

`hour_order` int(11) default '0' comment '小時訂單數',

`total_order` int(11) default '0' comment '總的訂單數',

`prediction` int(11) default '0' comment '**訂單數',

primary key (`id`),

unique key `dt_hour` (`dt`,`hour`)

) engine=innodb auto_increment=1 default charset=utf8 comment='實時訂單數'

表操作命令:

複製表結構:create table table1 like table;

複製資料:insert into table1 select * from table

機器授權:

grant select on *.* to 'reader'@'%' identified by '123456' with grant option

flush privileges

查詢資料直接插入

修改表結構

alter table competitor_goods add sku_id bigint(20) unsigned default null comment '商品銷售碼';

MySQL 檢視資料庫

對於當前資料庫的情況,例如資料庫大小 字符集 使用者等等,可以通過檢視資料庫的操作實現!登入資料庫之後,當我們看到mysql 就可以 1.檢視所有的資料庫 show databases 將檢視到已經建立的資料庫,如下 2.檢視資料庫定義的語句 3.檢視當前使用的資料庫 4.檢視資料庫使用的埠 5.檢...

資料庫資料結構

資料結構 數字型別 tinyint 1 byte 128,127 0,255 小整數值 smallint 2 bytes 32 768,32 767 0,65 535 大整數值 mediumint 3 bytes 8 388 608,8 388 607 0,16 777 215 大整數值 int或i...

mysql檢視 MySQL檢視當前資料庫庫

mysql檢視當前資料庫庫 1 在mysql下檢視當前使用的是哪個資料庫,有三種方式 用select database 語句 mysql select database database test row in set 0.00 sec 從查詢結果中可以看出,當前用的是test資料庫 2 用show...