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

Example:

SELECT MIN(PrdRating) MinimumRating
FROM DBO.ProductReviewHistory

MIN() - this is the function used to get the least value.