Re: [GENERAL] bool and NOT

2000-05-20 Thread Mike Mascari
Sascha Ziemann wrote: > > Hi, > > how should I write this: > > todolist=# select name from tasks_t where id = 5 and NOT done; > ERROR: argument to NOT is type 'numeric', not 'bool' > > bis später... > Sascha SELECT name FROM tasks_t WHERE id = 5 AND done = False; Hope that helps, Mike Mas

[GENERAL] bool and NOT

2000-05-19 Thread Sascha Ziemann
Hi, how should I write this: todolist=# select name from tasks_t where id = 5 and NOT done; ERROR: argument to NOT is type 'numeric', not 'bool' bis später... Sascha