SQL Server Transact Basic to Expert - Using Max function to find the Highest value

This blog shows how to use the MAX function to get the Highest of a value from an expression using SQL.

Example:

SELECT  MAX(PrdRating) MaximumRating 
FROM  DBO.ProductReviewHistory

MAX() - this is the function used to get the hightest value.