I would like to run a select something like this.
SELECT
COUNT(*) WHERE switch=0 AND detail=1 AS zeroone
AND
COUNT(*) WHERE switch=0 AND detail=2 AS zerotwo
AND
COUNT(*) WHERE switch=1 AND detail=1 AS oneone
AND
COUNT(*) WHERE swithc=1 AND detail=2 AS onetwo
FROM tablename
Is there a way to do this?
You can use a
CASEStatement in yourSELECTto get the results: