Files
MBS/PROYECTO/INSERTCTTB013.sql
T

37 lines
993 B
Transact-SQL

INSERT INTO [marmotech].[dbo].[cttb00013]
([fecha_lq]
,[fecha]
,[tipo_lq]
,[num_oc]
,[cod_n]
,[cod_grupo]
,[cod_tipo]
,[cod_sec]
,[cantidad]
,[costo_lq]
,[status_t]
,[us_crea]
,[fech_crea]
,[us_mod]
,[fech_mod]
,[tipo_orden])
VALUES
(<fecha_lq, date,>
,<fecha, date,>
,<tipo_lq, char(1),>
,<num_oc, int,>
,<cod_n, smallint,>
,<cod_grupo, smallint,>
,<cod_tipo, smallint,>
,<cod_sec, smallint,>
,<cantidad, decimal(12,2),>
,<costo_lq, decimal(12,4),>
,<status_t, char(1),>
,<us_crea, char(9),>
,<fech_crea, smalldatetime,>
,<us_mod, char(9),>
,<fech_mod, smalldatetime,>
,<tipo_orden, smallint,>)
GO