From: | Leonel Nunez <lnunez(at)enelserver(dot)com> |
---|---|
To: | Kelly González Enríquez <kge_7(at)yahoo(dot)com(dot)mx> |
Cc: | postgresql <pgsql-es-ayuda(at)postgresql(dot)org> |
Subject: | Re: Valor-Maximo |
Date: | 2006-03-28 17:15:51 |
Message-ID: | 44296F47.3040306@enelserver.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-es-ayuda |
Kelly González Enríquez wrote:
> La revise e hice
>
> select MAX("valor_est")from est_baszmvt;
>
> select * from est_baszmvt where "valor_est"=(select MAX("valor_est")
> from est_baszmvt);
>
> y me devuelve:
>
> fila valor_est
> 1 9975
>
> Pero ese no es el valor maximo que tengo almacenado en esa columna
>
> ------------------------------------------------------------------------
> Do You Yahoo!? La mejor conexión a Internet y *2GB* extra a tu correo
> por $100 al mes. http://net.yahoo.com.mx
claro porque la comparacion de cadenas de caracteres es DISTINTA a
los numeros :
leonel=> select max( a ) from aa;
max
-----
3
(1 row)
leonel=> select * from aa;
a
----------------------
1
3
1a
2
233
(5 rows)
leonel
From | Date | Subject | |
---|---|---|---|
Next Message | Martin Marques | 2006-03-28 17:47:04 | Re: Valor-Maximo |
Previous Message | Juan Martínez | 2006-03-28 17:09:08 | Re: Valor-Maximo |