SELECT count(*) FROM Stack WHERE Id = 33478 GROUP BY SID
Output:
(No column name)
1
4
For the result; there are two row. How can I return it 2? (count of rows)
Are there any way like below:
Select COUNT(SELECT count(*) FROM Stack WHERE ContentId = 33478 GROUP BY SID) ....
Thanks.