Home > Database > Mysql Tutorial > body text

SqlServer 列的增加和删除

WBOY
Release: 2016-06-07 15:26:06
Original
1524 people have browsed it

有些时候我们需要删除或增加数据库中有数据中表的列。总结一下列的删除和增加。 1. 删除列 当表中存在数据时,删除列后,数据也会被删除。 sql语句: alter table 表名 drop column 列名 如果列存在约束,不能直接删除列。此时需要先删除约束: Sql语句: alt

有些时候我们需要删除或增加数据库中有数据中表的列。总结一下列的删除和增加。

1. 删除列

当表中存在数据时,删除列后,数据也会被删除。

sql语句:

alter table 表名 drop column 列名
Copy after login

如果列存在约束,不能直接删除列。此时需要先删除约束:

Sql语句:

alter table 表名 drop constraint 约束名
Copy after login

2.增加列

列的增加有两种情况,一种增加的字段允许为空,另一种反之。我们来看看这两种情况有什么不同?

2.1 增加的列可以为空。

当增加列可空时,原有的数据会为新增的列赋值为NULL

增加列Sql语句:

alter table student add Gender bit
Copy after login

2.2 增加的列不能为空。

当增加列不能为空时,则必须为列添加默认值

Sql语句:

alter table student add Gender bit not null default(0)
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template