Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
select a.KmEnd as CurrentMileage, b.KmEnd as PreviousMileage
from RouteAvtovozi a Inner Join RouteAvtovozi b on
a.RegNo = b.RegNo
where a.KomNo = <Current KomNo>
and b.KomNo < a.KomNo
and not exists (
select * from RouteAvtovozi c
where c.RegNo = a.RegNo
and c.KomNo > b.KomNo
and c.KomNo < a.KomNo)