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/Finance_InBody.sql

25 lines
659 B
Transact-SQL

/****** Object: Table [dbo].[Import_Finance_InBody] Script Date: 10/30/2013 09:18:33 ******/
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[Import_Finance_InBody]') AND type in (N'U'))
DROP TABLE [dbo].[Import_Finance_InBody]
GO
/****** Object: Table [dbo].[Import_Finance_InBody] Script Date: 10/30/2013 09:18:33 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Import_Finance_InBody](
[id] [int] IDENTITY(1,1) NOT NULL,
[Finance_id] [nchar](10) NULL,
[Repaymentdate] [datetime] NULL,
[Amount] [nchar](10) NULL,
[cargo_id] [int] NULL,
[cargostatus] [int] NOT NULL
) ON [PRIMARY]
GO