I am having the table named tbl_sales and this table contains the fields active and is_featured. Now i am trying to get the count of the records where active=0, active=1, is_featured=1 and is_featured=0. How can i get this in a single query. Can somebody show me a query to get this. I am a newbie to programming and in a self learning process. Need solutions. Thanks in advance
|
|
||||
|
|
|
Try using
The The |
|||||||||||
|
|
This will do.
Update: This SQL will group all rows with all four combinations
and provide the count for each group. Since there is a having clause, it will restrict to have rows only columns having values 0 or 1. |
||||
|
|
|
For example
|
|||
|
|
sample output:
|
|||
|
|
When you take a look at mySQL's
Take a look how So building your query like this:
Should always return 4 rows which would look like:
And than with simple loop (example in php, do it in whatever you need:
|
|||
|
|