function

PostgreSQL Tutorial: MAX Function: Get Maximum Value in a Set

Summary: This tutorial shows you how to use the PostgreSQL MAX() function to get the maximum value of a set.

Continue reading

PostgreSQL Tutorial: MIN Function: Get Minimum Value In a Set

Summary: In this tutorial, you will learn how to use PostgreSQL MIN() function to get the minimum value of a set.

Continue reading

PostgreSQL Tutorial: STRING_AGG Function

Summary: In this tutorial, you will learn how to use the PostgreSQL STRING_AGG() function to concatenate strings and place a separator between them.

Continue reading

PostgreSQL Tutorial: SUM Function

Summary: In this tutorial, you’ll learn how to use PostgreSQL SUM() function to calculate the sum of a set of values.

Continue reading

PostgreSQL Tutorial: Substring Function

Summary: In this tutorial, we will introduce you to PostgreSQL substring function that extracts a substring from a string.

Continue reading

PostgreSQL Tutorial: COUNT Function

Summary: In this tutorial, you will learn how to use the PostgreSQL COUNT() function to count the number of rows in a table.

Continue reading

PostgreSQL Tutorial: LENGTH Function

Summary: In this tutorial, we will show you various PostgreSQL length functions that return the number of characters or the number of bytes of a string.

Continue reading

PostgreSQL Tutorial: Letter Case Functions

Summary: In this tutorial we will show you how to use the LOWER, UPPER and INITCAP functions to convert a string expression, values in a column, etc., to lowercase, uppercase, and proper case.

Continue reading

PostgreSQL Tutorial: POSITION Function

Summary: The PostgreSQL POSITION() function returns the location of a substring in a string.

Continue reading

PostgreSQL Tutorial: REPLACE Function

Summary: In this tutorial, we will introduce you to the PostgreSQL replace functions that search and replace a substring with a new substring in a string.

Continue reading