增加單個欄位及注釋:
alter table 表名 add欄位名
int(11) default null comment 『注釋;』;
增加多個欄位及注釋:
alter table 表名 add
(欄位名
int(11) default null comment 『注釋』,
欄位名
varchar(255) default null comment 『注釋』);
給單個字段新增唯一索引:
alter table 表名 add unique index 索引別名 (列名);
給多個字段新增唯一索引:
alter table 表名 add unique index 索引別名 (列名,列名);
sql查詢資料庫注釋(表及表注釋,欄位及字段注釋)
1.要查詢資料庫下所有表名以及表注釋 查詢資料庫 mammothcode 所有表注釋 select table name,table comment from information schema.tables where table schema mammothcode 2.要查詢表字段的注釋 查...
MySQL 表及字段注釋
1 建立表的時候寫注釋 create table test1 field name int comment 欄位的注釋 comment 表的注釋 2 修改表的注釋 alter table test1 comment 修改後的表的注釋 3 修改欄位的注釋 alter table test1 modif...
Oracle給表和字段新增注釋
oracle給表和字段新增注釋。建立 學生資訊 資料表。建立 學生資訊 資料表 create table student info stu id int,學號 stu name varchar2 8 姓名 email varchar2 20 郵箱 char 2 性別 age int,年齡 class...