nhb2318(提问者)select a.编号,a.变动类型 ,a.最后操作时间 借阅时间,a.经办人 from
(
select t1.编号,t1.最后操作时间,t2.变动类型,t2.经办人 from
(select 编号,max(时间) 最后操作时间 from 借阅记录
group by 编号) t1
left join
(
select 时间,编号,变动类型,经办人 from 借阅记录
) t2 on t1.编号=t2.编号 and t1.最后操作时间=t2.时间
) a
where a.变动类型 =\'借阅\'
搞定,谢谢