10 lines
403 B
Transact-SQL
10 lines
403 B
Transact-SQL
CREATE TABLE [dbo].[ReportSezioneComposizionePers] (
|
|
#x0D;
|
|
[IdReport] int NOT NULL,
|
|
[IdComponente] smallint NOT NULL,
|
|
[IdSezione] int NOT NULL,
|
|
[Utente] varchar(13) NOT NULL,
|
|
[DataCreazione] datetime NULL
|
|
)
|
|
ALTER TABLE [dbo].[ReportSezioneComposizionePers] ADD CONSTRAINT [XPKReportSezioneComposizionePers] PRIMARY KEY CLUSTERED ([IdReport],[IdComponente],[IdSezione])
|
|
GO |