Guest User

Untitled

a guest
Aug 18th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. USE [InsertTest]
  2. GO
  3.  
  4. /****** Object: Table [dbo].[Employee] Script Date: 2018/08/18 15:38:28 ******/
  5. SET ANSI_NULLS ON
  6. GO
  7.  
  8. SET QUOTED_IDENTIFIER ON
  9. GO
  10.  
  11. CREATE TABLE [dbo].[Employee](
  12. [No] [int] NOT NULL,
  13. [Name] [nchar](15) NOT NULL,
  14. [RegDate] [date] NOT NULL,
  15. CONSTRAINT [PK_Employee] PRIMARY KEY CLUSTERED
  16. (
  17. [No] ASC
  18. )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
  19. ) ON [PRIMARY]
  20. GO
Add Comment
Please, Sign In to add comment