一、簡單描述表結構,字段型別 desc tabl_name; 或 describe columns ; 顯示表結構,字段型別,主鍵,是否為空等屬性,但不顯示外來鍵和字段的注釋。 二, 檢視表生成的 ddl show create table 表名 ; 這個命令雖然顯示起來不是太容易看, 這個不是問題可以用
一、簡單描述表結構,字段型別
desc tabl_name; 或describe columns;
顯示表結構,字段型別,主鍵,是否為空等屬性,但不顯示外來鍵和字段的注釋。
二,檢視表生成的ddl
show create table 表名;
這個命令雖然顯示起來不是太容易看, 這個不是問題可以用\g來結尾,使得結果容易閱讀;該命令把建立表的ddl顯示出來,於是表結構、型別,外來鍵,備註全部顯示出來了。我比較喜歡這個命令:輸入簡單,顯示結果全面。
三,查詢表中列的注釋資訊
use information_schema
select * from columns where table_name = '表名' ;
四、檢視表的注釋
select table_name,table_comment frominformation_schema.tables where table_schema = 'db' and table_name='表名'
五,只查詢列名和注釋
select column_name, column_comment from information_schema.columnswhere table_schema ='db' and table_name = '表名' ;
檢視MySQL 表結構
前言 最近在實習中,做到跟mysql相關的開發時,想起了好久前的乙個筆試題 檢視資料庫表結構有哪幾種方法 一 使用describe語句 describe table name 或desc table name 後者是前者的簡寫形式。這種方式是最簡單的語句。二 show columns語句 show ...
Mysql表結構資訊的檢視
主要是乙個查詢的sql語句,可以根據需要結合python等進行改造和優化,使我們在進行資料結構整理和資料分析的時候能夠多一點方便。其他諸如oracle的及hive的表結構資訊檢視與此類似又有所不同。select a1.table name 表名,a1.table rows 記錄條數,a1.table...
檢視修改MySQL表結構命令
修改資料庫字符集 alter database db name default character set character name collate 把錶預設的字符集和所有字元列 char,varchar,text 改為新的字符集 alter table tbl name default cha...