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 TOP 1 PAT_NUM, Sum(Cost) As TotalCost
FROM [table with a field]
GROUP BY PAT_NUM
ORDER BY Sum(Cost) DESC;