Advertisement
Guest User

Untitled

a guest
May 4th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. /****** Object: Table [dbo].[Trabajador] Script Date: 04/05/2016 13:43:32 ******/
  2. SET ANSI_NULLS ON
  3. GO
  4. SET QUOTED_IDENTIFIER ON
  5. GO
  6. CREATE TABLE [dbo].[Trabajador](
  7. [id] [int] IDENTITY(1,1) NOT NULL,
  8. [nombre] [nvarchar](50) NOT NULL,
  9. [apellidos] [nvarchar](50) NOT NULL,
  10. [edad] [int] NOT NULL,
  11. [salario] [float] NOT NULL,
  12. [alta] [date] NOT NULL,
  13. CONSTRAINT [PK_Trabajador] PRIMARY KEY CLUSTERED
  14. (
  15. [id] ASC
  16. )WITH (STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF)
  17. )
  18.  
  19. GO
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement