First off thanks for the help.
select * from products where products_too_low = 0
This seems to be working OK. But i want to further filter out some rows.. I want to do something like this:
select p.products_id, p.products_too_low from products p, toolowtable t where t.products_id = p.products_id and p.products_too_low=0
I think that the final where condition (p.products_too_low=0)
is being ignored.. Any ideas? Thanks!
rw