Torna al Thread

CREATE TABLE [dbo].[tab_Alloggiati]( [Codice_Albergo] [int] NOT NULL, [Codice_Scheda] [bigint] NOT NULL, [appartenenza] [int] NOT NULL, [tipo_alloggiato] [int] NOT NULL, [Data_Arrivo] [datetime] NULL, [Data_Partenza] [datetime] NULL, [Cognome] [nvarchar](50) NULL, [Nome] [varchar](50) NULL, CONSTRAINT [PK_tab_Alloggiati_1] PRIMARY KEY CLUSTERED ( [Codice_Albergo] ASC, [Codice_Scheda] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO
Copyright © dotNetHell.it 2002-2024
Running on Windows Server 2008 R2 Standard, SQL Server 2012 & ASP.NET 3.5