> -----Message d'origine-----
> De: Lehmeier, Michael [SMTP:michael(dot)lehmeier(at)cognitech(dot)de]
> Date: jeudi 7 juin 2001 18:06
> Objet: [GENERAL] Format of BOOLEAN
>
> testdb=# SELECT * FROM testtable WHERE acolumn = t;
> ERROR: Attribute 't' not found
testdb=# SELECT * FROM testtable WHERE acolumn = 't';
Don't forget the single quote around the t : a boolean is a single char...
NH