SQL Server Transact Basic to Expert - Using Min function to find the lowest value

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.
Ebook Download
View all
Learn
View all