I have a query, which essentially is this...
select count(visible) as cVis, Visible
from products
Visible can have a value of 0 or 1.. and I'm trying to figure out how to always get a count on both (Invisible 0 and Visible 1).
Right now if there's no count for one of them, it doesn't return it.
Any help is appreciated.
ALFII.com
---------------------
If this post answered or helped to answer your question, please reply with such so that forum members with a similar question will know to use this advice.
select count(visible) as cVis, Visible
from products
Visible can have a value of 0 or 1.. and I'm trying to figure out how to always get a count on both (Invisible 0 and Visible 1).
Right now if there's no count for one of them, it doesn't return it.
Any help is appreciated.
ALFII.com
---------------------
If this post answered or helped to answer your question, please reply with such so that forum members with a similar question will know to use this advice.