13 lines
785 B
SQL
13 lines
785 B
SQL
CREATE TABLE [som_ita].[tmp_ImportRic_A] (
|
|
[Descrizione] NVARCHAR (250) CONSTRAINT [DF_tmp_ImportRic_A_Descrizione] DEFAULT ('') NOT NULL,
|
|
[NomeCostruttore] NVARCHAR (250) CONSTRAINT [DF_tmp_ImportRic_A_NomeCostruttore] DEFAULT ('') NOT NULL,
|
|
[CodCostruttore] NVARCHAR (250) CONSTRAINT [DF_tmp_ImportRic_A_CodCostruttore] DEFAULT ('') NOT NULL,
|
|
[Destinazione] NVARCHAR (250) CONSTRAINT [DF_tmp_ImportRic_A_CodCostruttore1] DEFAULT ('') NOT NULL,
|
|
[CodSomaschini] NVARCHAR (50) CONSTRAINT [DF_tmp_ImportRic_A_CodSomaschini] DEFAULT ('') NOT NULL,
|
|
[Giacenza] INT CONSTRAINT [DF_tmp_ImportRic_A_Giacenza] DEFAULT ((0)) NOT NULL,
|
|
[Gruppo] NVARCHAR (250) CONSTRAINT [DF_tmp_ImportRic_A_Gruppo] DEFAULT ('') NOT NULL
|
|
);
|
|
|
|
|
|
|