解决方案 »

  1.   

    select 时间,count(*) from tablegroup by 时间 order by 时间 DESC
      

  2.   

    select 时间,count(*) from tablegroup by 时间 order by 时间 DESC        这个逗号要报错把?就是select  时间  ,  这里
      

  3.   

    select 时间,count(*) from table group by 时间 order by 时间 DESC
      

  4.   


    table group
    中间缺个空格
      

  5.   


    晕, table 是指你的表名   然后加个空格 再写 group by
      

  6.   

    select 时间 from 表明 group by 时间  order by 时间 desc
      

  7.   

    select distinct  时间 from table
      

  8.   

    楼主,这个是 group by,不是tablegroup,还是先看看基础语法吧……
      

  9.   

    select SendDate,count(*) as ct from tablegroup group by SendDate order by SendDate desc