select id,OpenDate,CancelDate from Customer  where  id in (select min(id) from Customer  group by OpenDate  )   order by OpenDate desc  

相关文章: