楼主搞错了吧,2006-07-19         date是最大的???

解决方案 »

  1.   

    select * from 表 a
    where not exists (select 1 from 表 where [no.2]=a.[no.2] and date>a.date)
      

  2.   

    SELECT TOP 1 * FROM TABLE WHERE NO.2 = '13422502411' ORDER BY DATE  DESC
    //
    SELECT id, no.1, shopid,  no.2  ,max(date)FROM TABLE group BY NO.2
      

  3.   

    select top 1 * from where no.2 = 13422502411 table order by date desc
      

  4.   

    select top 1 * from where no.2 = 13422502411 table order by date desc这个答案好像不对啊,因为不具有普遍性.