11 lines
291 B
Transact-SQL
11 lines
291 B
Transact-SQL
CREATE TABLE [dbo].[_CONTROLLO_TRIMESTRALE_25] (
|
|
[cod_fiscale] varchar(16) NOT NULL,
|
|
[rete] char(1) NOT NULL,
|
|
[flag_diagnosi] bit NOT NULL,
|
|
[id_report_m] int NULL,
|
|
[id_report_d] int NULL,
|
|
[stato_report] tinyint NULL,
|
|
[pacchetto_zip] int NULL,
|
|
[data_transizione] datetime NULL
|
|
)
|
|
GO |