24-11-2004
|
Miembro
|
|
Registrado: may 2003
Ubicación: ECUADOR
Posts: 529
Poder: 22
|
|
Ordenar por un campo calculado
Como puedo ordenar este query por medio del campo UTIL
Cita:
Select v1.nombre nomb_ven,v.cod_producto,v.nombre,sum(d.cantidad) TcantVend,
sum(total_linea) tventa,Round(sum(d.cantidad*d.precio_prom),2) Tcosto,
Round(sum(d.total_linea-d.precio_prom*d.cantidad),2) Util
from vendedor v1,cab_fac c,det_fac d,vi_producto_bodega v
Where c.estado_fac='T'
and extractDate(c.fec_factura) between :desde and :hasta
and v1.key_vendedor=c.key_vendedor
And c.key_cab_fac=d.key_cab_fac
and d.key_producto_b=v.key_producto_b
Group by v1.nombre,v.cod_producto,v.nombre
Order by 1,6 desc
|
Utilizo firebird 1.0 , delphi 6 y los componentes IBX
Desde ya gracias
__________________
IVAND
|