About 141,000,000 results
Open links in new tab
  1. SQL MIN () and MAX () Functions - W3Schools

    The SQL MIN () and MAX () Functions The MIN() function returns the smallest value of the selected column. The MAX() function returns the largest value of the selected column.

  2. SQL MAX Aggregate Function

    In this tutorial, you will learn how to find the maximum value in a group using the SQL MAX aggregate function.

  3. SQL MAX () Function - GeeksforGeeks

    Nov 22, 2025 · The SQL MAX () function helps quickly identify the highest value within any column, making it useful for summarizing and analyzing data trends. It is widely used in reports to find top …

  4. MAX (Transact-SQL) - SQL Server | Microsoft Learn

    Nov 18, 2025 · MAX can be used with numeric, char, nchar, varchar, nvarchar, uniqueidentifier, or datetime columns, but not with bit columns. Aggregate functions and subqueries aren't permitted.

  5. SQL: MAX Function - TechOnTheNet

    This SQL tutorial explains how to use the SQL MAX function with syntax and examples. The SQL MAX function is used to return the maximum value of an expression in a SELECT statement.

  6. SQL MAX () and MIN () Functions Explained with Examples

    Aug 20, 2025 · In MySQL, the MAX () function is an aggregate function that returns the largest (maximum) value from a specified column. The MIN () function returns the smallest (minimum) value …

  7. Mastering the SQL MAX Function: Finding the Largest Values with …

    In this blog, we’ll explore the MAX function in depth, covering its syntax, use cases, and practical applications with clear examples. By the end, you’ll be using MAX confidently to uncover the highest …

  8. How MAX works in SQL? Best MAX examples - KajoData

    The MAX() function in SQL returns the maximum value from a given column. It’s mostly used with numerical values, dates, and even text columns (where it finds the highest value based on …

  9. SQL Server MAX Function

    First, use the MAX() function in the subquery to return the highest list price of all products. Then, retrieve the products whose list prices equal the highest price returned from the subquery in the outer query.

  10. SQL MAX () function - TutorialsTeacher.com

    It can be applied on the numeric, character, or date values. For the demo purpose, we will use the following Employee and Department tables in all examples. The following selects the maximum …