MySQL 新增和檢視表注釋 字段注釋

2021-09-18 06:55:42 字數 1081 閱讀 5013

建立表的時候寫注釋

create

table student

( name varchar(20

)comment

'欄位的注釋'

, age int

comment

'欄位的注釋'

)comment

='表的注釋'

;

修改表的注釋

alter

table student comment

'修改後的表的注釋'

;

修改欄位的注釋

alter

table student

modify

column name varchar(20

)comment

'修改後的字段注釋'

;--注意:欄位名和字段型別照寫就行

檢視表注釋的方法

--在生成的sql語句中看

show

create

table student;

--在元資料的表裡面看

use information_schema;

select

*from

tables

where table_schema=

'demo'

and table_name=

'student' \g

檢視字段注釋的方法

--show

show

full

columns

from student;

--在元資料的表裡面看

select

*from

columns

where table_schema=

'demo'

and table_name=

'student' \g

參考

mysql新增表注釋、字段注釋、檢視與修改注釋

mysql檢視表注釋和字段注釋的方法

1 取字段注釋 select column name 列名,data type 字段型別,column comment 字段注釋 from information schema.columns where table name companies 表名 and table schema testhu...

檢視文章 mysql 表注釋和字段注釋

參考文件不太給力啊,表注釋和字段注釋的資料不全。1 建立表的時候寫注釋 create table test1 field name int comment 欄位的注釋 comment 表的注釋 2 修改表的注釋 alter table test1 comment 修改後的表的注釋 3 修改欄位的注釋...

檢視文章 mysql 表注釋和字段注釋

參考文件不太給力啊,表注釋和字段注釋的資料不全。1 建立表的時候寫注釋 create table test1 field name int comment 欄位的注釋 comment 表的注釋 2 修改表的注釋 alter table test1 comment 修改後的表的注釋 3 修改欄位的注釋...