About 7,120,000 results
Open links in new tab
  1. SQL Server Group Functions - GeeksforGeeks

    Dec 28, 2023 · The group function in SQL Server provides a powerful tool for performing calculations on groups of rows, allowing you to group data based on specific criteria. This function is important when …

  2. Categories of SQL Functions - GeeksforGeeks

    Dec 5, 2025 · It's used in the SELECT list just like a built-in SQL function. Note: User Defined Functions can be used in SELECT list, WHERE, ORDER BY, GROUP BY, CONNECT BY, START WITH …

  3. SQL GROUP BY Statement - W3Schools

    The SQL GROUP BY Statement The GROUP BY statement is used to group rows that have the same values into summary rows, like "Find the number of customers in each country".

  4. GROUP BY and Aggregate Functions: A Complete Overview

    Apr 18, 2024 · This article will give you an overview of GROUP BY, aggregate functions and how to use them together. It will also discuss common GROUP BY pitfalls.

  5. SQL Server Functions - W3Schools

    SQL Server has many built-in functions. This reference contains string, numeric, date, conversion, and some advanced functions in SQL Server.

  6. SQL GROUP BY - GeeksforGeeks

    Jan 27, 2026 · The SQL GROUP BY clause is used to arrange identical data into groups based on one or more columns. It is commonly used with aggregate functions like COUNT (), SUM (), AVG (), MAX …

  7. SQL Aggregate Functions - W3Schools

    SQL Aggregate Functions An aggregate function is a function that performs a calculation on a set of values, and returns a single value. Aggregate functions are often used with the GROUP BY clause of …

  8. RANK () Function in SQL Server - GeeksforGeeks

    Jan 19, 2026 · SQL RANK () is used to assign a rank or position to each row within a result set based on a specified order. Rows with the same values receive the same rank, and the next rank is skipped for …

  9. CAST and CONVERT (Transact-SQL) - SQL Server | Microsoft Learn

    Reference for the CAST and CONVERT Transact-SQL functions. These functions convert expressions from one data type to another.

  10. SQL Functions - Types, Uses, and Best Practices - Intellipaat

    Nov 11, 2025 · SQL Functions - Understand SQL functions, their types & uses. Learn best practices, challenges & future trends to enhance database efficiency & functionality.