62,253
社区成员
发帖
与我相关
我的任务
分享
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
