表A和表B关联,其中表B的记录可能有多条,我需要只取第一条(按时间排序),请问如果写sql语句?
select top 1 * from a left join b on a.id=b.id order by b.时间