08/06/2009, 07:04
|
| | Fecha de Ingreso: abril-2009 Ubicación: En dust 2
Mensajes: 149
Antigüedad: 15 años, 8 meses Puntos: 2 | |
Respuesta: Error buscando minimo muchas gracias, ya lo he solucionado e modificado la secuencia y se quedaría así:
Código:
select distinct
tar.i_id_tarifa,
tar.i_id_proveedor,
tar.v_ruta,
tar.v_prefijo,
tar.v_destino,
tar.i_id_operacion,
f_coste,
f_pvp,
tar.i_id_tarifario,
tar.d_fecha_alta,
tar.d_fecha_mod,
tar.i_usuario_creacion,
tar.i_usuario_mod,
(tar.F_COSTE + tar.F_PVP) as suma
from
tarifa tar inner join operacion ope on tar.i_id_operacion=1
inner join tarifario tarif on tar.i_id_tarifario=tarif.i_id_tarifario
inner join cliente cli on tarif.I_ID_TARIFARIO = cli.I_ID_TARIFARIO
WHERE
cli.I_ID_CLIENTE =3 order by suma Limit 1
|