Hi all,
I was just wondering: when I execute the following query:
select sum(foo) from bar where column1='value_which_does_not_exist';
postgres gives me a result which consists of one row. But it shouldn't
because
that value does not exist.
Does anyone know some sort of workaround for this? I need to use this
query in
a PHP script and this result in kind off annoying.
TIA
Vincent