CREATE TABLE [dbo].[ReportSezioneComposizionePers] ( [IdReport] int NOT NULL, [IdComponente] smallint NOT NULL, [IdSezione] int NOT NULL, [Utente] varchar(13) NOT NULL, [DataCreazione] datetime NULL ) ALTER TABLE [dbo].[ReportSezioneComposizionePers] ADD CONSTRAINT [XPKReportSezioneComposizionePers] PRIMARY KEY CLUSTERED ([IdReport],[IdComponente],[IdSezione]) GO