From: | "Melvin Davidson" <mdavidson(at)cctus(dot)com> |
---|---|
To: | "Ketema Harris" <ketema(at)gmail(dot)com>, "Pgadmin Support" <pgadmin-support(at)postgresql(dot)org> |
Subject: | Re: Feature Request -Show NULL |
Date: | 2007-05-24 20:19:32 |
Message-ID: | 2CC69F840555CB43B04195F218CCB57F8F5966@COENGEX01.cctus.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgadmin-support |
You can do that now with a little code as follows:
SELECT column1,
column2,
CASE WHEN maybe_null_column IS NULL THEN 'NULL' ELSE
maybe_null_column END
FROM your_table;
-----Original Message-----
From: pgadmin-support-owner(at)postgresql(dot)org
[mailto:pgadmin-support-owner(at)postgresql(dot)org] On Behalf Of Ketema Harris
Sent: Thursday, May 24, 2007 12:42 PM
To: Pgadmin Support
Subject: [pgadmin-support] Feature Request
I was wondering if were possible in a future release of pgadmin, to
display 'null' in all query result panes where its an actual null value
instead of just a blank, because it is indistinguishable from an empty
string at this time.
Thanks.
---------------------------(end of broadcast)---------------------------
TIP 2: Don't 'kill -9' the postmaster
From | Date | Subject | |
---|---|---|---|
Next Message | Melvin Davidson | 2007-05-24 20:30:11 | Re: Feature Request - Show Null |
Previous Message | Ketema Harris | 2007-05-24 18:41:40 | Feature Request |