首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

取记录.该如何处理

2012-02-01 
取记录.记录:a2007-1-1a2007-1-2a2007-1-3a2007-1-4b2007-1-11b2007-1-21b2007-1-31b2007-1-14b2007-1-15c

取记录.
记录:
  a     2007-1-1
  a     2007-1-2
  a     2007-1-3
  a     2007-1-4
  b     2007-1-11
  b     2007-1-21
  b     2007-1-31
  b     2007-1-14
  b     2007-1-15
  c     2007-1-21
  c     2007-1-24
去a   b   c   3条记录   按日期排序

[解决办法]
select
t.*
from
表 t
where
not exists(select 1 from 表 where type=t.type and date> t.date)
order by
t.date desc

热点排行