Torna al Thread

CREATE TABLE [dbo].[Categorie]( [Id] [int] NOT NULL, [Descrizione] [varchar](50) NULL, [Codice] [int] NULL CONSTRAINT [PK_Categorie] PRIMARY KEY CLUSTERED ( [Id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] ed ecco una serie di dati all'interno: Insert Into dbo.categoria (id,descrizione) Values (0,'5 STELLE LUSSO',11) Insert Into dbo.categoria (id,descrizione) Values (1,'5 STELLE',11) Insert Into dbo.categoria (id,descrizione) Values (2,'4 STELLE',12) Insert Into dbo.categoria (id,descrizione) Values (3,'3 STELLE',13) Insert Into dbo.categoria (id,descrizione) Values (4,'2 STELLE',14) Insert Into dbo.categoria (id,descrizione) Values (5,'1 STELLA',15) Insert Into dbo.categoria (id,descrizione) Values (6,'BED&BREAKFAST',40) Insert Into dbo.categoria (id,descrizione) Values (7,'AFFITTA CAMERE 1a CAT.',21) Insert Into dbo.categoria (id,descrizione) Values (8,'AFFITTA CAMERE 2a CAT.',21) Insert Into dbo.categoria (id,descrizione) Values (9,'AFFITTA CAMERE 3a CAT.',21) Insert Into dbo.categoria (id,descrizione) Values (10,'CAMPEGGI-VILLAGGI',22) Insert Into dbo.categoria (id,descrizione) Values (11,'ALLOGGI-AGROTURISTICI',23) Insert Into dbo.categoria (id,descrizione) Values (12,'ALTRI ESERCIZI',24) Insert Into dbo.categoria (id,descrizione) Values (13,'OSTELLI PER LA GIOVENTU',25) Insert Into dbo.categoria (id,descrizione) Values (14,'CASE PER FERIE',26) Insert Into dbo.categoria (id,descrizione) Values (15,'RIFUGI ALPINI',27) Insert Into dbo.categoria (id,descrizione) Values (16,'ALLOGGI PRIVATI',28) Insert Into dbo.categoria (id,descrizione) Values (17,'CAMPEGGI',29) Insert Into dbo.categoria (id,descrizione) Values (18,'VILLAGGI TURISTICI',30) Insert Into dbo.categoria (id,descrizione) Values (19,'RESIDENZE TURISTICO ALBERGHIERE',16)
Copyright © dotNetHell.it 2002-2025
Running on Windows Server 2008 R2 Standard, SQL Server 2012 & ASP.NET 3.5