Select count(*) from result query

前端 未结 3 1550
一个人的身影
一个人的身影 2021-02-03 17:51

I need help from you, this is my sql query:

select count(SID) 
from Test 
where Date = \'2012-12-10\' 
group by SID

this is my result:

3条回答
  •  醉梦人生
    2021-02-03 18:50

    select count(*) from(select count(SID) from Test where Date = '2012-12-10' group by SID)select count(*) from(select count(SID) from Test where Date = '2012-12-10' group by SID)

    should works

提交回复
热议问题