sql在一个表中添加字段并添加备注的方法

时间:2022-11-04 22:43:21

1、加字段:

alter table 表名 ADD 字段名 类型;

eg:

sql" id="highlighter_259359">
?
1
alter table sys_cwzd ADD SCCLLJ VARCHAR2(50);

 

2、加备注

?
1
comment on column 表名.字段名 is '备注名';

 

eg:

?
1
comment on column sys_cwzd.SCCLLJ is '上传材料路径';

 

内容扩展:

添加新字段:

?
1
alter table bulletin add citycode varchar(6) not null default 0; # 城市代码

1.创建数据库时设置编码

?
1
create database test character set utf8;

2.创建表时设置编码

?
1
create table test(id int primary key)DEFAULT charset=utf8;

3.修改数据库编码

?
1
alter database test character set utf8;

4.修改表默认编码

?
1
alter table test character set utf8;
 

原文链接:https://www.cnblogs.com/Cuimc/p/11412191.html