Re: Union

From: "Victor Lopez" <d01m01a2000(at)gmail(dot)com>
To: "felipe fernandez" <ffdezrguez(at)tiscali(dot)es>
Cc: Postgresql <pgsql-es-ayuda(at)postgresql(dot)org>
Subject: Re: Union
Date: 2007-04-28 16:43:03
Message-ID: ae043d070704280943m4770de48y9b49b7a29ed5007b@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-es-ayuda

El 28/04/07, felipe fernandez <ffdezrguez(at)tiscali(dot)es> escribió:
> Jaime Casanova escribió:
> > On 4/27/07, Victor Lopez <d01m01a2000(at)gmail(dot)com> wrote:
> >> > select referencia, foto1, localidad
> >> > from (
> >> > SELECT REFERENCIA,FOTO1,LOCALIDAD, fecha, hora
> >> > FROM tabla1
> >> > WHERE FOTO1 != ''
> >> > AND ESTADO = 3
> >> > AND CATEGORIA IN (SELECT CODIGO FROM CATEGORIAS WHERE
> >> GRUPO=6)
> >> > AND DESTACADO = TRUE
> >> > UNION ALL
> >> > SELECT REFERENCIA,FOTO1,LOCALIDAD, fecha, hora
> >> > FROM tabla1
> >> > WHERE FOTO1 != ''
> >> > AND ESTADO = 3
> >> > AND CATEGORIA IN (SELECT CODIGO FROM CATEGORIAS WHERE
> >> GRUPO=6)
> >> > AND DESTACADO = FALSE
> >> > ) foo
> >> > ORDER BY FECHA DESC, HORA DESC LIMIT 1;
> >> >
> >>
> >> Por interpretar ... yo interpreto que quiere que los destacados salgan
> >> antes de los no destacados.
> >>
> >> Pregunta :
> >>
> >> ORDER BY DESTACADO ASC, ....
> >> o
> >> ORDER BY DESTACADO DESC, ...
> >>
> >
> > no. porque lo esta ordenando explicitamente por fecha y hora, no por
> > destacado
> >> ORDER BY FECHA DESC, HORA DESC LIMIT 1;
> >
> Para que primero salgan los destacados debo incluirlos en el order,
> efectivamente.
>
> ---------------------------(fin del mensaje)---------------------------
> TIP 2: puedes desuscribirte de todas las listas simultáneamente
> (envíe "unregister TuDirecciónDeCorreo" a majordomo(at)postgresql(dot)org)
>

Y vuelvo a mi pregunta ... ¿Que es mayor ... TRUE o FALSE ... para un ORDER BY?

--
----o---( )---o----
Saludos de Victor Lopez Sabio
d01m01a2000(at)gmail(dot)com
--------oooo--------

In response to

  • Re: Union at 2007-04-28 04:33:32 from felipe fernandez

Responses

  • Re: Union at 2007-04-28 17:11:30 from Jaime Casanova

Browse pgsql-es-ayuda by date

  From Date Subject
Next Message Jaime Casanova 2007-04-28 17:11:30 Re: Union
Previous Message Jaime Casanova 2007-04-28 16:37:53 Re: Disfrazar Postgresql