一、簡單描述表結構,字段型別desc tabl_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'
ps:二~四是在元資料表中檢視,我在實際操作中,常常不靈光,不知為什麼,有了解的大俠請留印。
五、檢視表生成的ddl show create table table_name;
mysql檢視表結構索引 mysql檢視表結構命令
mysql檢視表結構命令,如下 desc 表名 show columns from 表名 describe 表名 show create table 表名 use information schema select from columns where table name 表名 順便記下 show...
mysql檢視表計畫
在實際開發中我們不免要用到explain檢視我們編寫的sql語句執行效率。往往有的時候我們會發現在寫複雜的sql語句的時候資料庫執行的效率會很慢,這個時候我們檢視表計畫就會方便我們修改sql語句提高工作效率同時提公升系統的效能。執行計畫的生成方法 explain select from studen...
mysql 檢視表結構
連線到mysql d mysql 5.6.10 winx64 bin mysql h192.168.1.1 u root proot hip u使用者名稱 p密碼 url 檢視表結構 url quote 檢視表結構資訊 本人相看,得到相同的結果 1.desc 表名 2.show columns fr...