表A 
字段有
项目hp_id 录入人姓名 name 状态 status (咨询,预约,无效) 录入时间
如果我现在想统计 XX项目 XX人 昨天的 咨询 预约 无效的数量 应该怎么做啊

解决方案 »

  1.   

    select 项目hp_id,录入人姓名,count(*)
    from 表A
    where status='无效'
    where 录入时间 between curdate()-interval 1 day and curdate()
    group by 项目hp_id,录入人姓名
      

  2.   

    (不要高估你的汉语表达能力或者我的汉语理解能力)[/color]
       建议你列出你的表结构,并提供测试数据以及基于这些测试数据的所对应正确结果。
       参考一下这个贴子的提问方式http://bbs.csdn.net/topics/320211382
       
       1. 你的 create table xxx .. 语句
       2. 你的 insert into xxx ... 语句
       3. 结果是什么样,(并给以简单的算法描述)
       4. 你用的数据库名称和版本(经常有人在MS SQL server版问 MySQL)
       
       这样想帮你的人可以直接搭建和你相同的环境,并在给出方案前进行测试,避免文字描述理解上的误差。
      

  3.   

    select 项目hp_id,录入人姓名,count(case when status=1 then 1 end) as wuxiao,
    count(case when status=2 then 1 end) as zixun,
    count(case when status=3 then 1 end) as yuyue
    from 表A
    where status='无效'
    where 录入时间 between curdate()-interval 1 day and curdate()
    group by 项目hp_id,录入人姓名