From: | Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us> |
---|---|
To: | "Samuel J(dot) Sutjiono" <ssutjiono(at)wc-group(dot)com> |
Cc: | pgsql-general(at)postgresql(dot)org, pgsql-sql(at)postgresql(dot)org |
Subject: | Re: [SQL] Sort problem |
Date: | 2002-02-25 20:03:42 |
Message-ID: | 200202252003.g1PK3gO07141@candle.pha.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general pgsql-sql |
Samuel J. Sutjiono wrote:
> Bruce,
>
> My apology. Actually I posted the wrong problem. Here is my problem:
>
> IF (SortOrder = ''price'') Then
> BEGIN
> For rec_set IN
> SELECT * from Catalog where ((VendorName ~* SearchString)
> ORDER BY CASE WHEN SortOrder = ''store'' Then VendorName
> WHEN SortOrder = ''category'' Then
> ProductCategory Else Price END
>
> Here is the error message:
> ERROR: CASE types "numeric" and "varchar" not matched.
>
> By the way, do you know how to do a variable (that contains 'attribute name'
> instead of 'attribute value') substitution. For instance, if the attribute
> name 'Price' is passed to the sort parameter ($1) so I can just do ORDER BY
> $1 instead of doing case statement.
The CASE can't return on type of data in one branch and a different type
in another.
--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026
From | Date | Subject | |
---|---|---|---|
Next Message | Bruce Momjian | 2002-02-25 20:09:35 | Re: Ordering 'A', 'B', ..., 'Z', 'AA', 'AB', ... |
Previous Message | Bruce Momjian | 2002-02-25 20:01:44 | Re: Backup & Restore |
From | Date | Subject | |
---|---|---|---|
Next Message | Jean-Luc Lachance | 2002-02-25 21:53:29 | Re: Sort problem |
Previous Message | Oliver Elphick | 2002-02-25 20:01:10 | Re: Sort problem |