21/07/2008, 17:18
|
| | | Fecha de Ingreso: agosto-2005 Ubicación: Lima, Peru
Mensajes: 2.951
Antigüedad: 19 años, 5 meses Puntos: 39 | |
Respuesta: Problema con consulta select into y subconsulta en sql server Prueba asi:
Código:
INSERT INTO tabKardex(
CodProd_kar,
Concepto_kar,
Fecha_kar,
FecRegBD_kar,
CantIngreso_kar,
VuIngreso_kar,
VtIngreso_kar,
CantSaldo_kar)
SELECT CodProd_dtc, 'COMPRA', UniMed_dtc, @FechaCompra_com, getdate(), (Cant_dtc*Rela_dtc), (Vt_dtc / (Cant_dtc*Rela_dtc)), Vt_dtc,
(Cant_dtc*Rela_dtc) +(select isnull(sum(CantIngreso_kar),0) - isnull(sum(CantSalida_kar),0) from tabKardex where CodProd_kar = DC.CodProd_dtc)
FROM tabDetCompra DC
WHERE NumCompra_dtc = @NumeroCompra
__________________ No repitamos temas, usemos el Motor de busquedas
Plantea bien tu problema: Ayúdanos a ayudarte. |