About 804 results
Open links in new tab
  1. SQL MAX () Function - W3Schools

    The SQL MAX () Function The MAX() function returns the largest value of the selected column. The MAX() function works with numeric, string, and date data types.

  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 · A constant, column name, or function, and any combination of arithmetic, bitwise, and string operators. MAX can be used with numeric, char, nchar, varchar, nvarchar, uniqueidentifier, or …

  5. SQL MAX () function - w3resource

    2 days ago · The aggregate function SQL MAX () is used to find the maximum value or highest value of a certain column or expression. This function is useful to determine the largest of all selected values …

  6. SQL Server MAX Function

    This tutorial shows you how to use the SQL Server MAX () function to find the maximum value in a set of values.

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

  8. SQL MAX Function - Syntax and Examples [4] - Tutorial Kart

    It works with numeric, date, and text data types, returning the largest value in the specified column. The MAX function is frequently used with the GROUP BY clause to get maximum values for each group …

  9. SQL MAX () function - TutorialsTeacher.com

    The MAX () function is an aggregate function that is used to find the largest value in the given column or expression. It can be applied on the numeric, character, or date values.

  10. SQL MIN and MAX Functions Explained in 6 Examples

    Aug 31, 2021 · What are the SQL MIN () and MAX () functions? When should you use them as aggregate functions, and when should you use them with window functions? We explain using …