7 lines
257 B
Transact-SQL
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 |