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/新协航_设计文档/数据库建表文档/20140303/ch_fee增加会计期间和凭证号.sql

22 lines
892 B
Transact-SQL

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

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.ch_fee ADD
ISVOU bit default 0,
VOUCHERNO nchar(10) NULL,
ACCDATE varchar(7) NULL,
BXGID varchar(50) null
GO
ALTER TABLE dbo.ch_fee SET (LOCK_ESCALATION = TABLE)
GO
COMMIT
update ch_fee set ISVOU=0