mysql 數據庫結構,linux查看mysql數據表結構?
一、簡單描述表結構,字段類型
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顯示出來,于是表結構、類型,外鍵,備注全部顯示出來了。
我比較喜歡這個命令:輸入簡單,顯示結果全面。