About 4,550 results
Open links in new tab
  1. 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.

  2. SQL MIN () Function - W3Schools

    Here we use the MIN() function and the GROUP BY clause, to return the smallest price for each category in the Products table: You will learn more about the GROUP BY clause later in this tutorial.

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

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

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

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

  8. Using MAX () in SQL Server - Database.Guide

    Sep 4, 2025 · The real flexibility comes with the OVER clause, which turns MAX() into a window function. Instead of collapsing the dataset into a single row, it calculates the maximum across a …

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

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