Add a column with a default value to an existing table in SQL Server(将具有默认值的列添加到 SQL Server 中的现有表)
问题描述
如何在 SQL Server 2000中的现有表中添加具有默认值的列a>/SQL Server 2005?
推荐答案
语法:
ALTER TABLE {TABLENAME}
ADD {COLUMNNAME} {TYPE} {NULL|NOT NULL}
CONSTRAINT {CONSTRAINT_NAME} DEFAULT {DEFAULT_VALUE}
WITH VALUES
示例:
ALTER TABLE SomeTable
ADD SomeCol Bit NULL --Or NOT NULL.
CONSTRAINT D_SomeTable_SomeCol --When Omitted a Default-Constraint Name is autogenerated.
DEFAULT (0)--Optional Default-Constraint.
WITH VALUES --Add if Column is Nullable and you want the Default Value for Existing Records.
注意事项:
可选的约束名称:
如果您省略 CONSTRAINT D_SomeTable_SomeCol,则 SQL Server 将自动生成
具有有趣名称的默认约束,例如:DF__SomeTa__SomeC__4FB7FEF6
Notes:
Optional Constraint Name:
If you leave out CONSTRAINT D_SomeTable_SomeCol then SQL Server will autogenerate
a Default-Contraint with a funny Name like: DF__SomeTa__SomeC__4FB7FEF6
可选的 With-Values 语句:WITH VALUES 仅在您的 Column 为 Nullable 时才需要
并且您想要用于现有记录的默认值.
如果您的 Column 是 NOT NULL,那么它将自动使用默认值
对于所有现有记录,无论您是否指定 WITH VALUES.
Optional With-Values Statement:
The WITH VALUES is only needed when your Column is Nullable
and you want the Default Value used for Existing Records.
If your Column is NOT NULL, then it will automatically use the Default Value
for all Existing Records, whether you specify WITH VALUES or not.
插入如何使用默认约束:
如果你在 SomeTable 中插入一个 Record 并且 not 指定 SomeCol 的值,那么它将默认为 <代码>0.
如果您插入记录并且将SomeCol的值指定为NULL(并且您的列允许空值),
那么默认约束将不被使用,NULL将作为值插入.
How Inserts work with a Default-Constraint:
If you insert a Record into SomeTable and do not Specify SomeCol's value, then it will Default to 0.
If you insert a Record and Specify SomeCol's value as NULL (and your column allows nulls),
then the Default-Constraint will not be used and NULL will be inserted as the Value.
注释是基于以下每个人的出色反馈.
特别鸣谢:
@Yatrix、@WalterStabosz、@YahooSerious 和 @StackMan 发表评论.
Notes were based on everyone's great feedback below.
Special Thanks to:
@Yatrix, @WalterStabosz, @YahooSerious, and @StackMan for their Comments.
这篇关于将具有默认值的列添加到 SQL Server 中的现有表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将具有默认值的列添加到 SQL Server 中的现有表
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- SQL 临时表问题 2022-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 更改自动增量起始编号? 2021-01-01
