You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DS7/DSWeb/word/新协航_设计文档/数据库建表文档/1.0/Main_增加字段.sql

21 lines
429 B
Transact-SQL

BEGIN TRANSACTION
SET QUOTED_IDENTIFIER ON
SET ARITHABORT ON
SET NUMERIC_ROUNDABORT OFF
SET CONCAT_NULL_YIELDS_NULL ON
SET ANSI_NULLS ON
SET ANSI_PADDING ON
SET ANSI_WARNINGS ON
COMMIT
BEGIN TRANSACTION
GO
ALTER TABLE dbo.Import_main ADD
Writeoffs tinyint NULL
GO
ALTER TABLE dbo.Import_main ADD CONSTRAINT
DF_Import_main_Writeoffs DEFAULT 0 FOR Writeoffs
GO
ALTER TABLE dbo.Import_main SET (LOCK_ESCALATION = TABLE)
GO
COMMIT