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 i.[iid], i.[hid], o.[order amount]
FROM [Individual] AS i INNER JOIN [Order_header] AS o
ON i.[iid] = o.[iid]
ORDER BY o.[order amount] DESC;