mysql 查詢表結構

2022-02-13 15:23:59 字數 617 閱讀 2762

檢視表中字段的結構資訊 

可以用來檢視表中字段的注釋等,比如

select  table_name,column_name,column_comment

from information_schema.columns where table_schema ='表所在的庫'  and table_name = '要檢視的表名' ;

檢視庫裡面表的結構資訊  

可以用來檢視表的注釋資訊

select table_name,table_comment from information_schema.tables where table_schema = '表所在的庫' and table_name ='表名' ;

去掉 table_name 限定條件,即可檢視指定庫中的所有表資訊

查詢mysql表結構的語句 查詢表結構的slq語句

1.mysql 和 sqlserver 資料庫 檢視表結構 select from information schema.columns where table name 表名 修改字段長度 alter table 表名 alter column 欄位名 字段型別 字段長度 oracle 資料庫 檢...

MySQL 查詢表結構簡單命令

一 簡單描述表結構,字段型別 desc tabl name 顯示表結構,字段型別,主鍵,是否為空等屬性,但不顯示外來鍵。例如 desc table name 二 查詢表中列的注釋資訊 select from information schema.columns where table schema ...

查詢mysql的表結構相關sql

檢視表結構 desc yourtablename 檢視建立表語句 show create table yourtablename 檢視所有列的資訊 use information schema select from columns where table name yourtablename 檢視...