PDC_REPORT_CreazioneDB/sql/Collaudo bfdskrepsei02c/tabelle/dbo_ReportSezioneComposizionePers.sql
2025-06-26 18:47:11 +02:00

9 lines
373 B
Transact-SQL

CREATE TABLE [dbo].[ReportSezioneComposizionePers] (
[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