发布网友 发布时间:2022-04-25 16:13
共2个回答
热心网友 时间:2022-04-07 16:25
数据表中添加一个字段的SQL语句写法为:
1、alter table 表名 ADD 字段 类型 NOT NULL Default 0
2、ALTER TABLE employee ADD spbh varchar(20) NOT NULL Default 0
3、在表employee 中加入 spbh 类型是varchar大小20 不为空 默认值是0
扩展资料:
其他常用sql语句:
1、修改数据表中某项字段属性,为其添加备注。
语句格式:comment on column 库名.表名.字段名 is '输入的备注';
示例: 我要在ers_data库中 test表 document_type字段添加备注,则sql语句为:
comment on column ers_data.test.document_type is '文件类型';
2、删除数据表中的某字段。
语句格式:alter table 表名 drop (字段);
热心网友 时间:2022-04-07 17:43
只有两种
在某一列后面,就用AFTER,放在最后面
在一张表的最前面,用FIRST关键字
没有BEFORE关键字
ALTER [IGNORE] TABLE tbl_name ADD [COLUMN] column_definition [FIRST | AFTER col_name ]