About 245,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() 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 …

  3. 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.

  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 Examples and Use Cases - SQL Server Tips

    May 5, 2022 · Learn about the SQL MAX () function in SQL Server to find the maximum values in a result set along with several examples of using SQL MAX ().

  6. 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.

  7. SQL MAX Function | Find Maximum Values | Interview Master

    The MAX function is a SQL aggregate function designed to return the maximum (largest) value from a set of values in a specified column. It's incredibly versatile, working not just with numbers but also …

  8. SQL MAX Function - Tutorial Gateway

    The SQL Server MAX Function is used to find the Maximum value from the total records (rows) in the SELECT Statement, and it ignores nulls.

  9. SQL MAX Function - LearnSQL.com

    Apr 16, 2024 · Learn the syntax of the SQL MAX function and how to use it to find the highest values in your database columns.

  10. SQL MAX () Function: Retrieving the Largest Value - CodeLucky

    Learn how to use the SQL MAX () function to retrieve the largest value from a dataset. This detailed guide includes syntax, examples, and practical use cases.