From: | Zuoxin(dot)Wang(at)kp(dot)org |
---|---|
To: | pgsql-admin(at)postgresql(dot)org |
Subject: | |
Date: | 2005-04-19 20:27:09 |
Message-ID: | OF58EA8D58.3A5E272D-ON88256FE8.006FEA68@KP.ORG |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-admin |
Hi all,
Does any one know why I have following inconsistant results from
PostgreSQL?
Thanks in advance.
test=# select birthday from patient;
birthday
------------
1960-02-01
1960-02-01
(2 rows)
test=# select used from patient;
used
------
N
N
(2 rows)
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)
test=# select first_name, last_name, birthday, used from patient;
first_name | last_name | birthday | used
------------+-----------+------------+------
AAAAAA | TDI | 1960-02-01 | N
AAAAAB | TDI | 1960-02-01 | N
(2 rows)
test=#
Jason
From | Date | Subject | |
---|---|---|---|
Next Message | Bruno Wolff III | 2005-04-19 20:37:27 | Re: brute force attacking the password |
Previous Message | Robert Treat | 2005-04-19 19:28:46 | Re: FW: Admin Tool to Send Me Email |