Skip to content
Advertisement

Get GPS data (lat, lon, address) for each truckId with the latest timedate

I have the following table :

main(rowId, posDatetime, truckId, lat, lon, address)

rowId: PK
posDatetime: the date and time of the coordinates and address
truckId
lat,lon
address: address string

rows are not fed in datetime order.

to get the latest position for each truck I hit the DB with this query FOR EACH truck:

SELECT * FROM main WHERE truckId=XXXX ORDER BY posDatetime DESC LIMIT 1

It gets me what I want but I feel it is inefficient, ive tried using MAX() but it gets me rows of data that are not the one with the MAX() value.

Is there a way to do something like:

select * from main where rowId=MAX(posDatetime).rowID GROUP BY truckId

Is there anything like it?

Advertisement

Answer

A solution that will quickly always give a trucks last stated position. An alternative solution would be to add the two columns posDateTime and mainId to the truck table and change the logic in the trigger.

The solution assumes you have a version of mysql that supports triggers.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement