我知道语法:
ALTER TABLE [TheTable] DROP CONSTRAINT [TheDefaultConstraint]
但是当我不知道它的名字时如何删除默认约束? (也就是说,它是在CREATE TABLE
时自动生成的。)
答案 0 :(得分:59)
您可以使用此代码自动执行此操作:
DECLARE @tableName VARCHAR(MAX) = '<MYTABLENAME>'
DECLARE @columnName VARCHAR(MAX) = '<MYCOLUMNAME>'
DECLARE @ConstraintName nvarchar(200)
SELECT @ConstraintName = Name
FROM SYS.DEFAULT_CONSTRAINTS
WHERE PARENT_OBJECT_ID = OBJECT_ID(@tableName)
AND PARENT_COLUMN_ID = (
SELECT column_id FROM sys.columns
WHERE NAME = @columnName AND object_id = OBJECT_ID(@tableName))
IF @ConstraintName IS NOT NULL
EXEC('ALTER TABLE '+@tableName+' DROP CONSTRAINT ' + @ConstraintName)
只需根据需要替换<MYTABLENAME>
和<MYCOLUMNNAME>
。
答案 1 :(得分:46)
如果要手动执行此操作,可以使用Management Studio查找它(在表中的“约束”节点下)。
使用SQL执行此操作:
如果约束是默认约束,您可以使用sys.default_constraints
来查找它:
SELECT OBJECT_NAME(parent_object_id) AS TableName, name AS ConstraintName
FROM sys.default_constraints ORDER BY TableName, ConstraintName
如果您正在寻找其他约束(检查,唯一,外键,默认,主键),您可以使用sysconstraints
:
SELECT OBJECT_NAME(id) AS TableName, OBJECT_NAME(constid) AS ConstraintName
FROM sysconstraints ORDER BY TableName, ConstraintName
您没有说明您使用的是哪个版本的SQL Server。以上是关于SQL 2005和SQL 2008的工作。
答案 2 :(得分:4)
或者您可以使用sys.check_constraints目录视图找到它。
答案 3 :(得分:3)
您可以通过sp_help [table name]找到约束的名称,然后按名称删除它。
或者你可以通过管理工作室这样做。
答案 4 :(得分:1)
对于单行中的单个表和列,请使用以下
declare @sql nvarchar(max); set @sql = ''; SELECT @sql+='ALTER TABLE [dbo].[YOURTABLENAME] DROP CONSTRAINT ' + ((SELECT OBJECT_NAME(constid) FROM sysconstraints WHERE OBJECT_NAME(id) = 'YOURTABLENAME'AND colid IN (SELECT ORDINAL_POSITION FROM INFORMATION_SCHEMA.COLUMNS Where Table_Name = 'YOURTABLENAME' and COLUMN_NAME = 'YOURCOLUMNNAM'))) + ';'; EXEC sp_executesql @sql;
如果你对列有多个约束,你需要区分你所遵循的约束,但是如果你只有一个默认约束,那么这就可以了。
查看information_schema中可用的其他列,以便进一步区分。
答案 5 :(得分:0)
这是我自己的版本,它会删除所有相关约束 - 默认约束(如果存在)和所有受影响的检查约束(正如SQL标准似乎建议的那样)其他数据库似乎如此)
declare @constraints varchar(4000);
declare @sql varchar(4000);
with table_id_column_position as (
select object_id table_id, column_id column_position
from sys.columns where object_id is not null and object_id = object_id('TableName') and name = 'ColumnToBeDropped'
)
select @constraints = coalesce(@constraints, 'constraint ') + '[' + name + '], '
from sysobjects
where (
-- is CHECK constraint
type = 'C'
-- dependeds on the column
and id is not null
and id in (
select object_id --, object_name(object_id)
from sys.sql_dependencies, table_id_column_position
where object_id is not null
and referenced_major_id = table_id_column_position.table_id
and referenced_minor_id = table_id_column_position.column_position
)
) OR (
-- is DEFAULT constraint
type = 'D'
and id is not null
and id in (
select object_id
from sys.default_constraints, table_id_column_position
where object_id is not null
and parent_object_id = table_id_column_position.table_id
and parent_column_id = table_id_column_position.column_position
)
);
set @sql = 'alter table TableName drop ' + coalesce(@constraints, '') + ' column ColumnToBeDropped';
exec @sql
(注意:TableName
和ColumnToBeDropped
在上面的代码中出现两次)
这可以通过构建单个ALTER TABLE TableName DROP CONSTRAINT c1, ..., COLUMN ColumnToBeDropped
并执行它来实现。