I have a mysql query
SELECT SUM(idHit = 122791), SUM(idHit = 950521) FROM hits
that returns two values, instead of only one row with two columns:
5, 7
Using mysql syntax, I would like to get both values in one column with two rows? Like
5
7
That´s all, I suppose is necessary to convert sql query to subquery, but not sure. Please HELP.