Re: ORDER BY CASE ...

From: Bruno Wolff III <bruno(at)wolff(dot)to>
To: Mario Splivalo <mario(dot)splivalo(at)mobart(dot)hr>
Cc: Mathieu Arnold <mat(at)mat(dot)cc>, pgsql-sql(at)postgresql(dot)org
Subject: Re: ORDER BY CASE ...
Date: 2006-02-20 17:33:26
Message-ID: 20060220173326.GA29604@wolff.to
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Mon, Feb 13, 2006 at 22:28:38 +0100,
Mario Splivalo <mario(dot)splivalo(at)mobart(dot)hr> wrote:
> Can't do so, because receiving_time is timestamptz, and "from" is
> varchar. There:
>
> pulitzer2=# select id, "from", receiving_time from messages order by
> case when 2=3 then "from" else receiving_time end desc limit 5;
> ERROR: CASE types timestamp with time zone and character varying cannot
> be matched
>
> I need to explicitly cast receiving_time into varchar.
>
> What I would like to include ASC/DESC into CASE, but I guess that's not
> possible.

If you describe what order you are trying to get we might be able to give
you a more specific suggestion.

It looks like you are trying to sort on different column numbers based
on whether or not two other column numbers (that weren't shown) are equal.
(The syntax you are using for doing this isn't correct, but it is the only
thing that seems to make sense.)

Since columns 2 and 3 aren't really comparable, how were you expecting
the rows for the two cases to be interspersed? Just converting a timestamp
to a string seem like it wouldn't be the right answer.

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Pedro B. 2006-02-20 20:30:02 Re: Given 02-01-2006 to 02-28-2006, output all days.
Previous Message Patrick JACQUOT 2006-02-20 11:24:32 Re: Need help: Find dirty rows, Update, Delete SQL