Re: Problem with coalesce.. - Mailing list pgsql-sql

From Continuing Technical Education
Subject Re: Problem with coalesce..
Date
Msg-id 00a001c04414$997fd420$5911be86@cte.Dal.Ca
Whole thread Raw
In response to Problem with coalesce..  ("George Henry C. Daswani" <gdaswani@esri.com>)
List pgsql-sql
Try:
 
SELECT COALESCE(CURVALUE,1) FROM TABLEKEYS WHERE TABLENAME = 'BUYER';
 
----- Original Message -----
Sent: Tuesday, October 31, 2000 5:52 PM
Subject: [SQL] Problem with coalesce..

Hello,
 
    Was wondering if such a call is unsupported, or a bug?
 
7.0.2 (postgresql, linux redhat 7.0)
 
SELECT COALESCE ((SELECT NULL,1)
 
returns a 1, correct..
 
however..
 
SELECT COALESCE ((SELECT CURVALUE FROM TABLEKEYS WHERE TABLENAME = 'BUYER'),1)
 
returns a "UNKNOWN expression type 501"
 
SELECT CURVALUE FROM TABLEKEYS WHERE TABLENAME = 'BUYER'; returns a '0'
 
Thanks..
 
George
 
 

pgsql-sql by date:

Previous
From: "pgsql-sql"
Date:
Subject: Re(2): Re(2): Large Object dump ?
Next
From: Stephan Szabo
Date:
Subject: Re: [GENERAL] Problem with coalesce..