CREATE TABLE [dbo].[ReportPerCliente] ( #x0D; [DtAssociazione] datetime NOT NULL, [IdReport] int NOT NULL, [IdCliente] int NOT NULL ) ALTER TABLE [dbo].[ReportPerCliente] ADD CONSTRAINT [XPKReportPerCliente] PRIMARY KEY CLUSTERED ([IdReport],[IdCliente]) GO