意思大致听明白了,又是同组取一条的问题。只是不知道你想要的数据结果是怎么样的,因为你说要得到什么统计多少条记录.这个不太明。
同组选一条参见: 例1
http://topic.csdn.net/u/20080123/18/9731d130-0d4b-4c11-8d89-f2c3ca331f0c.html
另外,请把你的示意数据,及希望得到的结果贴上来。

解决方案 »

  1.   

    select a,count(1) as '条数'
    from tbname where b=1
    group by a
      

  2.   

    row     a    b    c(时间) 
    (1)101  1    2002 
    (2)101  1    2003 
    (3)101  2    2004 
    (4)102  1    2002 
    (5)102  2    2003 为什么是2,4,而不是2,5? 看不出来。
      

  3.   

    如果只是统计行数:新,旧,是相对的概念。
    当某个a只有一条记录时,那么它就是最新的。
    只要a存在一个记录,那么,它就有可能有一行(如果它的记录中b=1的话,那就是必有一行了)那么其实你的问题,就是统计b=1的不同的a的个数。
    select count(distinct a) from tb where b=1
      

  4.   


    declare @a table(a int ,b int,c int)
    insert into @a values(101,1,2002)
    insert into @a values(101,1,2003)
    insert into @a values(101,2,2004)
    insert into @a values(102,1,2002)
    insert into @a values(102,2,2003)select a,b,max(c)as 插入时间
    from @a
    where b = 1
    group by a,b
      

  5.   

    create table tb(a int,b int,c int)
    insert into tb select 101,1,2002
    insert into tb select 101,1,2003
    insert into tb select 101,2,2004
    insert into tb select 102,1,2002
    insert into tb select 102,2,2003select * from (select * from tb where b=1) t where not exists(
    select 1 from tb where b=1 and  a=t.a and c>t.c
    ) select a,b,max(c)
    from tb
    where b=1
    group by a,bselect * from tb t
    where c in(select max(c) from tb where a=t.a and b=1)a b c
    101 1 2003
    102 1 2002
      

  6.   

    针对你给的示意数据,请写出结果数据。比如
    t1 a b c
    1 2 3
    1 2 2
    2 2 1
    希望得到
    a b c
    2 1 3像这样写。 不要光说你希望得到的是2行,这样还是搞不明白你要什么。
      

  7.   


    a    b    c(时间) 
    101  1    2002 
    101  1    2003 
    101  2    2004 
    101    3    2005
    102  1    2002 
    102  2    2003 我希望得到的结果,如要查找状态为2的:
    a     b     c
    101   2     2004
    102   2     2003
    也就是第3条与第6条记录(满足两个条件状态为2,时间是最后的)
      

  8.   


    又崩溃了,为了说明为题,刚才新加了条记录
    希望结果是: 
    a     b     c
    102   2     2003
    是最后一条记录,如果这条记录是最新的,也就是比如101有4条,那么最新的101状态为3,而我希望得到状态为2的数据,所以101没有符合的数据
    而102有2条记录最新的一条记录状态为2,所以是我希望得到的
    所以结果为1也就是最后一条记录
      

  9.   

    select t.* from tb t where b = 1 and 时间字段 = (select max(时间字段) from tb where b = 1 and a = t.a)
      

  10.   

    --按某一字段分组取最大(小)值所在行的数据
    (爱新觉罗.毓华 2007-10-23于浙江杭州)
    /*
    数据如下:
    name val memo
    a    2   a2(a的第二个值)
    a    1   a1--a的第一个值
    a    3   a3:a的第三个值
    b    1   b1--b的第一个值
    b    3   b3:b的第三个值
    b    2   b2b2b2b2
    b    4   b4b4
    b    5   b5b5b5b5b5
    */
    --创建表并插入数据:
    create table tb(name varchar(10),val int,memo varchar(20))
    insert into tb values('a',    2,   'a2(a的第二个值)')
    insert into tb values('a',    1,   'a1--a的第一个值')
    insert into tb values('a',    3,   'a3:a的第三个值')
    insert into tb values('b',    1,   'b1--b的第一个值')
    insert into tb values('b',    3,   'b3:b的第三个值')
    insert into tb values('b',    2,   'b2b2b2b2')
    insert into tb values('b',    4,   'b4b4')
    insert into tb values('b',    5,   'b5b5b5b5b5')
    go--一、按name分组取val最大的值所在行的数据。
    --方法1:
    select a.* from tb a where val = (select max(val) from tb where name = a.name) order by a.name
    --方法2:
    select a.* from tb a where not exists(select 1 from tb where name = a.name and val > a.val)
    --方法3:
    select a.* from tb a,(select name,max(val) val from tb group by name) b where a.name = b.name and a.val = b.val order by a.name
    --方法4:
    select a.* from tb a inner join (select name , max(val) val from tb group by name) b on a.name = b.name and a.val = b.val order by a.name
    --方法5
    select a.* from tb a where 1 > (select count(*) from tb where name = a.name and val > a.val ) order by a.name
    /*
    name       val         memo                 
    ---------- ----------- -------------------- 
    a          3           a3:a的第三个值
    b          5           b5b5b5b5b5
    */--二、按name分组取val最小的值所在行的数据。
    --方法1:
    select a.* from tb a where val = (select min(val) from tb where name = a.name) order by a.name
    --方法2:
    select a.* from tb a where not exists(select 1 from tb where name = a.name and val < a.val)
    --方法3:
    select a.* from tb a,(select name,min(val) val from tb group by name) b where a.name = b.name and a.val = b.val order by a.name
    --方法4:
    select a.* from tb a inner join (select name , min(val) val from tb group by name) b on a.name = b.name and a.val = b.val order by a.name
    --方法5
    select a.* from tb a where 1 > (select count(*) from tb where name = a.name and val < a.val) order by a.name
    /*
    name       val         memo                 
    ---------- ----------- -------------------- 
    a          1           a1--a的第一个值
    b          1           b1--b的第一个值
    */--三、按name分组取第一次出现的行所在的数据。
    select a.* from tb a where val = (select top 1 val from tb where name = a.name) order by a.name
    /*
    name       val         memo                 
    ---------- ----------- -------------------- 
    a          2           a2(a的第二个值)
    b          1           b1--b的第一个值
    */--四、按name分组随机取一条数据。
    select a.* from tb a where val = (select top 1 val from tb where name = a.name order by newid()) order by a.name
    /*
    name       val         memo                 
    ---------- ----------- -------------------- 
    a          1           a1--a的第一个值
    b          5           b5b5b5b5b5
    */--五、按name分组取最小的两个(N个)val
    select a.* from tb a where 2 > (select count(*) from tb where name = a.name and val < a.val ) order by a.name,a.val
    select a.* from tb a where val in (select top 2 val from tb where name=a.name order by val) order by a.name,a.val
    select a.* from tb a where exists (select count(*) from tb where name = a.name and val < a.val having Count(*) < 2) order by a.name
    /*
    name       val         memo                 
    ---------- ----------- -------------------- 
    a          1           a1--a的第一个值
    a          2           a2(a的第二个值)
    b          1           b1--b的第一个值
    b          2           b2b2b2b2
    */--六、按name分组取最大的两个(N个)val
    select a.* from tb a where 2 > (select count(*) from tb where name = a.name and val > a.val ) order by a.name,a.val
    select a.* from tb a where val in (select top 2 val from tb where name=a.name order by val desc) order by a.name,a.val
    select a.* from tb a where exists (select count(*) from tb where name = a.name and val > a.val having Count(*) < 2) order by a.name
    /*
    name       val         memo                 
    ---------- ----------- -------------------- 
    a          2           a2(a的第二个值)
    a          3           a3:a的第三个值
    b          4           b4b4
    b          5           b5b5b5b5b5
    */
    --七,如果整行数据有重复,所有的列都相同。
    /*
    数据如下:
    name val memo
    a    2   a2(a的第二个值)
    a    1   a1--a的第一个值
    a    1   a1--a的第一个值
    a    3   a3:a的第三个值
    a    3   a3:a的第三个值
    b    1   b1--b的第一个值
    b    3   b3:b的第三个值
    b    2   b2b2b2b2
    b    4   b4b4
    b    5   b5b5b5b5b5
    */
    --在sql server 2000中只能用一个临时表来解决,生成一个自增列,先对val取最大或最小,然后再通过自增列来取数据。
    --创建表并插入数据:
    create table tb(name varchar(10),val int,memo varchar(20))
    insert into tb values('a',    2,   'a2(a的第二个值)')
    insert into tb values('a',    1,   'a1--a的第一个值')
    insert into tb values('a',    1,   'a1--a的第一个值')
    insert into tb values('a',    3,   'a3:a的第三个值')
    insert into tb values('a',    3,   'a3:a的第三个值')
    insert into tb values('b',    1,   'b1--b的第一个值')
    insert into tb values('b',    3,   'b3:b的第三个值')
    insert into tb values('b',    2,   'b2b2b2b2')
    insert into tb values('b',    4,   'b4b4')
    insert into tb values('b',    5,   'b5b5b5b5b5')
    goselect * , px = identity(int,1,1) into tmp from tbselect m.name,m.val,m.memo from
    (
      select t.* from tmp t where val = (select min(val) from tmp where name = t.name)
    ) m where px = (select min(px) from
    (
      select t.* from tmp t where val = (select min(val) from tmp where name = t.name)
    ) n where n.name = m.name)drop table tb,tmp/*
    name       val         memo
    ---------- ----------- --------------------
    a          1           a1--a的第一个值
    b          1           b1--b的第一个值(2 行受影响)
    */
    --在sql server 2005中可以使用row_number函数,不需要使用临时表。
    --创建表并插入数据:
    create table tb(name varchar(10),val int,memo varchar(20))
    insert into tb values('a',    2,   'a2(a的第二个值)')
    insert into tb values('a',    1,   'a1--a的第一个值')
    insert into tb values('a',    1,   'a1--a的第一个值')
    insert into tb values('a',    3,   'a3:a的第三个值')
    insert into tb values('a',    3,   'a3:a的第三个值')
    insert into tb values('b',    1,   'b1--b的第一个值')
    insert into tb values('b',    3,   'b3:b的第三个值')
    insert into tb values('b',    2,   'b2b2b2b2')
    insert into tb values('b',    4,   'b4b4')
    insert into tb values('b',    5,   'b5b5b5b5b5')
    goselect m.name,m.val,m.memo from
    (
      select * , px = row_number() over(order by name , val) from tb
    ) m where px = (select min(px) from
    (
      select * , px = row_number() over(order by name , val) from tb
    ) n where n.name = m.name)drop table tb/*
    name       val         memo
    ---------- ----------- --------------------
    a          1           a1--a的第一个值
    b          1           b1--b的第一个值(2 行受影响)
    */
      

  11.   

    应该是正解,只是少了个distinct,修正一下:
    select distinct .* from tb t where b = 1 and 时间字段 = (select max(时间字段) from tb where b = 1 and a = t.a)[/Quote]
      

  12.   


    --取记录明细:
    select distinct * from tb t where b=1 and 时间字段 = (select max(时间字段) from tb where a=t.a)
    --取记录数目:
    select count(distinct a) from t where b=1 and 时间字段 = (select max(时间字段) from tb where a=t.a)