Home / Tag Archives: sql

Tag Archives: sql

5 Must-Know SQL Aggregate Functions: Examples of SUM(), AVG(), COUNT(), MAX(), MIN() and GROUP BY

Aggregate functions in SQL are used to perform calculations on a set of values and return a single result. The most commonly used aggregate functions are SUM(), AVG(), COUNT(), MAX(), and MIN(). These functions can be used to perform various mathematical operations on a group of values, such as calculating …

Read More »

Scalar Functions in SQL:Usage and Examples with LOWER(), UPPER(), SUBSTRING(), REPLACE(), LEN(), DATALENGTH(), CAST(), CONVERT(), COALESCE(), and NULLIF()

Scalar Functions in SQL

Introduction to Scalar Functions in SQL Scalar functions in SQL are used to perform calculations and transformations on input values and return a single output value. They are used in SQL queries to manipulate data by modifying or transforming the data being retrieved or processed. In this tutorial, we will …

Read More »