PDC_REPORT_CreazioneDB/sql/Produzione bfdskreport02p/tables/dbo_ReportSezioneComposizionePers.sql
2025-06-25 11:25:55 +02:00

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