From: | Zuoxin(dot)Wang(at)kp(dot)org |
---|---|
To: | alvherre(at)dcc(dot)uchile(dot)cl |
Cc: | pgsql-admin(at)postgresql(dot)org |
Subject: | Re: |
Date: | 2005-04-19 21:09:04 |
Message-ID: | OF62753886.12AE3108-ON88256FE8.00741610@KP.ORG |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-admin |
Thanks Alvaro, you are right. Appreciate your quick help.
Jason
Alvaro Herrera <alvherre(at)dcc(dot)uchile(dot)cl>
04/19/2005 01:46 PM
To: Zuoxin Wang/CA/KAIPERM(at)Kaiperm
cc: pgsql-admin(at)postgresql(dot)org
Subject: Re: [ADMIN]
On Tue, Apr 19, 2005 at 01:27:09PM -0700, Zuoxin(dot)Wang(at)kp(dot)org wrote:
> test=# select used from patient;
> used
> ------
> N
> N
> (2 rows)
Try
select '{' || used || '}' from patient;
> test=# select first_name, last_name, used, birthday from patient;
> first_name | last_name | used | birthday
> ------------+-----------+------+------------
> | 1960-02-01DI | N
> | 1960-02-01DI | N
> (2 rows)
Looks like you have some non-printable character in the used column.
--
Alvaro Herrera (<alvherre[(at)]dcc(dot)uchile(dot)cl>)
"La conclusión que podemos sacar de esos estudios es que
no podemos sacar ninguna conclusión de ellos" (Tanenbaum)
From | Date | Subject | |
---|---|---|---|
Next Message | Ezequiel Tolnay | 2005-04-20 03:22:36 | SQL code versioning (views, functions, etc) |
Previous Message | Steve Crawford | 2005-04-19 21:08:44 | Re: |