Is it possible to pivot the output from a query?

80 views Asked by At

I have this output from this query:

select Date,Status, count(distinct persons)from TableA where Date='2014-11-04' group by Status;

+------------+------------------------+-------------------------------+
| Date       | Status                 | count(distinct persons)       |
+------------+------------------------+-------------------------------+
| 2014-11-04 | 0                      |                            45 |
| 2014-11-04 | 1                      |                            93 |
+------------+------------------------+-------------------------------+

What I wanted to get is that:

+------------+------------------------+-------------------------------+
| Date       | 0                      |     1                         |
+------------+------------------------+-------------------------------+
| 2014-11-04 | 45                     |    93                         |
+------------+------------------------+-------------------------------+
2

There are 2 answers

0
GarethD On BEST ANSWER

You can put a condition inside your COUNT function using CASE:

SELECT  Date,
        COUNT(DISTINCT CASE WHEN status = 0 THEN persons END) AS `0`,
        COUNT(DISTINCT CASE WHEN status = 1 THEN persons END) AS `1`
FROM    TableA
WHERE   Date = '2014-11-04'
GROUP BY Date;
0
Neha Patil On

You can use following code -

select Date, [0], [1]
from
(select Date,Status,persons
from TableA 
where Date='2014-11-04') AS SourceTable
PIVOT
(
    COUNT(persons)
    FOR Status IN ([0],[1])
) AS PivotTable;