62,243
社区成员




select count(cardtype) as [count] from ks_card_waitsell where status =1 group by cardtype,createtime
--修改完的还是有错
select count(cardtype) as [count] from ks_card_waitsell where status ='1' group by cardtype,createtime
--也有错
select count(cardtype) as count from ks_card_waitsell where status =1 group by cardtype,createtime
--修改为
select count(cardtype) as [count] from ks_card_waitsell where status =1 group by cardtype,createtime