2025-06-25 11:25:55 +02:00

12 lines
441 B
Transact-SQL

CREATE TABLE [dbo].[SezioneComposizione] (
#x0D;
[IdComponente] smallint NOT NULL,
[Nome] varchar(70) NULL,
[Descrizione] varchar(250) NULL,
[TpInclusione] smallint NULL,
[Ordine] smallint NULL,
[ClasseRealizzazione] varchar(70) NULL,
[IdSezione] int NOT NULL
)
ALTER TABLE [dbo].[SezioneComposizione] ADD CONSTRAINT [XPKSezioneComposizione] PRIMARY KEY CLUSTERED ([IdComponente],[IdSezione])
GO