mysql新增備註資訊的實現

2022-09-24 10:30:11 字數 640 閱讀 5656

前言

這連天有人問我一些mysql的備註資訊,不得已還是寫一遍部落格吧

1、建立表的時候,新增表名備註和字段備註

create table `healerjean_comment` (

`id` bigint(20) not null auto_increment,

`name` varchar(32) not null comment '名字備註',

`email` varchar(64)dehekvto not null,

`message` text ,

primary key (`id`),

key `index_name` (`name`)

) comment='表名備註' ;

2、表建立完成新增表名備註和字段備註

alter table healerjean_comment 程式設計客棧comment='測試索引表';

alter table healerjean_comment modi程式設計客棧fy name varchar(32) not null comment '名字備註'

3、檢視備註資訊

s create table healerjean;

show full columns from healerjean;

新增備註資訊(Project)

project2016 企業專案管理實踐 張會斌 董方好 編著 就在任務資訊的 高階 選項卡隔壁,還有乙個 備註 選項卡,可別拿備註不當回事,因為任務名稱的字數不能太多。好吧,張同學也沒說任務名稱的字數究竟有沒有限制,我也就懶得測試了,反正用腳趾頭想想也是,乙個電腦螢幕就那麼寬,如果任務名稱佔了十分...

mysql 寫備註 mysql怎麼新增備註

具體方法 1 建立表的時候,新增表名備註和字段備註create table healerjean comment id bigint 20 not null auto increment,name varchar 32 not null comment 名字備註 email varchar 64 n...

MySQL查詢備註資訊

在mysql下執行完下面這個建表語句後。如何從資料字典中,檢索出這個表的字段的相關資訊?drop table if exists test table create table test table test id int not null auto increment primary key co...