El máximo de un campo
Ola, necesito una ayuda tengo estas consulta
select f.nitcliente, t.nom, to_date(f.fecha,'dd/mm/rrrr') fecha_factura, f.numero, round(to_number(to_date(sysdate,'dd/mm/rrrr') - f.fecha)) dias_compra from tdters t, tdfacts f, tdtercarts d, (select nitcliente, max(numero), min(round(to_number(to_date(sysdate,'dd/mm/rrrr') - fecha))) dias_compra from tdfacts group by nitcliente, fecha)b where f.nitcliente = t.nit and d.tdter_nit = t.nit and d.autorizado = 's' and b.nitcliente = f.nitcliente --and f.nitcliente = :nit group by f.nitcliente, t.nom, f.fecha,f.numero, b.nitcliente order by t.nom, f.fecha
y necesito sacar el numero maximo del campo numero pero teniendo en cuenta las condiciones y que me salga agrupado dependiendo del cliente.
Agradezco mucho tu colaboración
select f.nitcliente, t.nom, to_date(f.fecha,'dd/mm/rrrr') fecha_factura, f.numero, round(to_number(to_date(sysdate,'dd/mm/rrrr') - f.fecha)) dias_compra from tdters t, tdfacts f, tdtercarts d, (select nitcliente, max(numero), min(round(to_number(to_date(sysdate,'dd/mm/rrrr') - fecha))) dias_compra from tdfacts group by nitcliente, fecha)b where f.nitcliente = t.nit and d.tdter_nit = t.nit and d.autorizado = 's' and b.nitcliente = f.nitcliente --and f.nitcliente = :nit group by f.nitcliente, t.nom, f.fecha,f.numero, b.nitcliente order by t.nom, f.fecha
y necesito sacar el numero maximo del campo numero pero teniendo en cuenta las condiciones y que me salga agrupado dependiendo del cliente.
Agradezco mucho tu colaboración
1 respuesta
Respuesta de dperdomo
1