Ej. QUIERO QUE SALGA ASÍ
Cita:
S.ANTER. INGRE SALID SALDO
2355.000 0.000 20.000 2335.000
2335.000 0.000 30.000 2305.000
2305.000 0.000 39.000 2266.000
2266.000 0.000 50.000 2216.000
Donde:
S.ANTER.= SALDO ANTERIOR
INGRE = INGRESOS
SALID = SALIDAS
SALDO = SALDO
2355.000 0.000 20.000 2335.000
2335.000 0.000 30.000 2305.000
2305.000 0.000 39.000 2266.000
2266.000 0.000 50.000 2216.000
Donde:
S.ANTER.= SALDO ANTERIOR
INGRE = INGRESOS
SALID = SALIDAS
SALDO = SALDO
Este es mi query:
select distinct al.ccod_art,al.ccod_eje, al.ccod_per, a.cnro_lote, a.dfch_vcto,
(al.nund_tot_ing - al.nund_tot_sal) as 'SALDO ANTERIOR',
a.nund_ing, a.nund_sal, ((al.nund_tot_ing - al.nund_tot_sal) + a.nund_ing) - a.nund_sal
from al_axsaldo al join al_mvlotes a
on al.ccod_eje = a.ccod_eje and
al.ccod_per = a.ccod_per and
al.ccod_alm = a.ccod_alm and
al.ccod_cia = a.ccod_cia
where al.ccod_cia= 'DPH'
and al.ccod_eje='EJ2009'
and al.ccod_alm='22' --and al.ccod_art='0308100742'
order by al.ccod_art, al.ccod_per, a.cnro_lote