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

8 lines
275 B
Transact-SQL

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