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