8 lines
198 B
Transact-SQL
8 lines
198 B
Transact-SQL
CREATE TABLE [dbo].[RecuperoPdfIdx] (
|
|
[Rete] char(1) NOT NULL,
|
|
[CodiceFiscale] varchar(16) NOT NULL,
|
|
[tip_contratto] smallint NULL,
|
|
[rol] char(1) NULL,
|
|
[data_fineAvanzato] datetime NULL
|
|
)
|
|
GO |