Re: Function in selection?

From: Dousak "May (Phoebus Apollonus)" <phoebus(at)email(dot)si>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: Function in selection?
Date: 2003-03-13 21:51:23
Message-ID: 1047592282.1833.45.camel@Grandis
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

One more problem :)

I wrote my tables and variables and it looks like that:

SELECT CASE WHEN cena=0 AND cenaeur<>0 THEN cena=cenaeur
*(SELECT eur FROM devizni ORDER BY eur OFFSET 20 LIMIT 1)
ELSE cena END AS cena, CASE WHEN cenaeur=0 AND cena<>0
THEN cenaeur=cena/(SELECT eur FROM devizni ORDER BY eur
OFFSET 20 LIMIT 1) ELSE cenaeur END AS cena_eur from oglasi
ORDER BY posr, id_regije;

cena, cenaeur and eur are all double precision.

When I try to execute it, I get following error:

ERROR: CASE types "float8" and "bool" not matched

I have no boolean in neither table... ok, comparision is binary,
but why do I get that error?
What can I do to make it work? :/

Tnx,

May

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Joe Conway 2003-03-13 22:05:30 Re: PL/Java (was: stored procedures)
Previous Message Mathieu Arnold 2003-03-13 21:49:10 Re: removal from list