mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
8 lines
271 B
Transact-SQL
8 lines
271 B
Transact-SQL
-- ===================================
|
|
-- Drop Default Constraint template
|
|
-- ===================================
|
|
|
|
ALTER TABLE <schema_name, sysname, dbo>.<table_name, sysname, table_name>
|
|
DROP CONSTRAINT <default_constraint_name, sysname, default_constraint_name>
|
|
GO
|