SQL-SQL Server-添加具有默认值和检查约束的列
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL-SQL Server-添加具有默认值和检查约束的列相关的知识,希望对你有一定的参考价值。
Example of SQL syntax to add a new column to an existing table, define a default value to the columns for the existing rows and also add a check constraint to limit the values that the column can hold.
ALTER TABLE GhibliMovies ADD Director VARCHAR(255) NULL CONSTRAINT director_check CHECK (Director IN ('Hayao Miyazaki', 'Isao Takahata', 'Yoshifumi Kondo', 'Goro Miyazaki', 'Hiromasa Yonebayashi')) DEFAULT 'Hayao Miyazaki' WITH VALUES;
以上是关于SQL-SQL Server-添加具有默认值和检查约束的列的主要内容,如果未能解决你的问题,请参考以下文章