Hi LaxRoth, I don't know if you can do with only sql language what you want but I'll write you this statement that permit to select the max records with the same "ressource".

Select * from [Table] WHERE [End] IN (Select Max([End]) from [Table] GROUP BY ressource)

I hope that you can use it.
Bye