On Fri, Aug 08, 2003 at 10:29:37 +0100,
Richard Hurst <richard.hurst@kirklees.gov.uk> wrote:
> Hi
>
> This may seem a bit simplistic but how do you match a select on a
> boolean data column where the entry is false or null
select * from table where columun is false or column is null;
or
select * from table where not column is true;