Loading lesson path
Concept visual
Start at both ends
Find the price of the most expensive product in the "Products" table:
SELECT MAX(Price) AS LargestPrice FROM Products;The MAX() function returns the maximum value in a set of values.
Also look at the MIN() function.
expression )
Required. A numeric value (can be a field or a formula)
SQL Server (starting with 2008), Azure SQL Database, Azure SQL Data Warehouse, Parallel Data Warehouse
❮ SQL Server Functions