2025-06-26 18:47:11 +02:00

7 lines
257 B
Transact-SQL

CREATE TABLE [dbo].[ReportPerCliente] (
[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