Set the default value for your boolean column. That way you won't have any NULL values in there and you can select on True or False.
If you don't like that solution, try (db.mytable.boolean==None) | (db.mytable.boolean==False) in your where clause. If this conditions is ANDed with other conditions, be sure to enclose it in parends to avoid order of evaluation problems. On Jul 28, 2:17 am, Kenneth Lundström <[email protected]> wrote: > Hello, > > is it so that if I query a table and ask to get all rows where a fields > value is != True then all "None" rows are also exluded, only "False" > rows are included? > > Kenneth

