----- Original Message -----
From: "Michal Lijowski" <michal(at)cvu(dot)wustl(dot)edu>
To: <pgsql-novice(at)postgresql(dot)org>
Sent: Thursday, April 15, 2004 9:03 PM
Subject: [NOVICE] Using SELECT WHERE
> RabStudies=> SELECT RabNo, ImplantDate, Comments FROM RabStudiesInfo
> where implantdate <> 0001-01-01;
You have to quote the date:
... where implantdate <> '0001-01-01';
chris