8 lines
315 B
Transact-SQL
8 lines
315 B
Transact-SQL
CREATE TABLE [dbo].[R6ReportR6Capitolo_20180328_PreMifid] (
|
|
[id] int NOT NULL,
|
|
[idFkReport] int NOT NULL,
|
|
[idFkCapitolo] int NOT NULL,
|
|
[ordineCapitolo] int NULL
|
|
)
|
|
ALTER TABLE [dbo].[R6ReportR6Capitolo_20180328_PreMifid] ADD CONSTRAINT [PK_R6ReportR6Capitolo_20180328_PreMifid] PRIMARY KEY CLUSTERED ([id])
|
|
GO |