if table contain passenger info you can do something like
SELECT TOP 1 WITH TIES carplate,SUM(costoftrip)*1.0/Count(*) AS AvgCost
FROM table
GROUP BY Carplate
ORDER BY AvgCost DESC
You may add further filters using WHERE caluse if you need to consider average over timeperiod like year etc by using date field
------------------------------------------------------------------------------------------------------
SQL Server MVP
http://visakhm.blogspot.com/