10 lines
332 B
Transact-SQL
10 lines
332 B
Transact-SQL
CREATE TABLE [dbo].[ReportFisico] (
|
|
#x0D;
|
|
[FileReport] image NULL,
|
|
[Identificativo] int NOT NULL,
|
|
[IndiceNavigatore] smallint NULL,
|
|
[IndiceCopertina] smallint NULL,
|
|
[ReportDopoC6] bit NULL
|
|
)
|
|
ALTER TABLE [dbo].[ReportFisico] ADD CONSTRAINT [XPKReportFisico] PRIMARY KEY CLUSTERED ([Identificativo])
|
|
GO |