Title - Max/Min SQL function Tags - sql function aggregate

MAX() returns the highest value in a column.

MIN() returns the lowest value in a column.

Example:

SELECT MAX(price) FROM fake_apps;

Returns the price of the app with the most expensive price from the fake_apps table.