Skip to content

Database.Guide

functions

GROUP_CONCAT() Function in MySQL

November 7, 2021 by Ian

MySQL has a GROUP_CONCAT() function that enables us to return columns from a query as a delimited list.

It returns a string result with the concatenated non-NULL values from a group.

Read more

Categories MySQL Tags aggregate functions, aggregation, functions, what is

MariaDB GROUP_CONCAT()

November 6, 2021November 6, 2021 by Ian

MariaDB has a GROUP_CONCAT() function that enables us to return columns from a query as a delimited list.

Read more

Categories MariaDB Tags aggregate functions, aggregation, functions, what is

STRING_AGG() Function in PostgreSQL

November 6, 2021 by Ian

In PostgreSQL, we can use the STRING_AGG() function to return columns from a query as a delimited list.

Read more

Categories PostgreSQL Tags aggregate functions, aggregation, functions, what is

How POSITION() Works in PostgreSQL

November 5, 2021 by Ian

PostgreSQL has a POSITION() function that returns the first starting index of a specified substring within a string.

If the substring doesn’t exist in the string, then zero is returned.

Read more

Categories PostgreSQL Tags functions, string functions, what is

RPAD() Function in PostgreSQL

October 30, 2021 by Ian

In PostgreSQL, RPAD() is a function that enables us to add padding to the right part of a string.

Read more

Categories PostgreSQL Tags functions, string functions, what is

LPAD() Function in PostgreSQL

October 30, 2021 by Ian

In PostgreSQL, LPAD()is a function that enables us to add padding to the left part of a string.

Read more

Categories PostgreSQL Tags functions, string functions, what is

FORMAT() Examples in MySQL

October 28, 2021 by Ian

In MySQL, the FORMAT() function returns a number formatted to a specified number of decimal places.

It includes group separators and a decimal separator where applicable.

Read more

Categories MySQL Tags functions, numeric functions, what is

How CONCAT_WS() Works in PostgreSQL

July 4, 2024October 24, 2021 by Ian

In PostgreSQL, the CONCAT_WS() function concatenates two or more strings, placing a separator between each one. The separator is specified by the first argument.

Read more

Categories PostgreSQL Tags functions, string functions, what is

How the CONCAT() Function Works in PostgreSQL

July 4, 2024October 23, 2021 by Ian

In PostgreSQL, the CONCAT() function concatenates the text representations of its arguments.

Read more

Categories PostgreSQL Tags functions, string functions, what is

YEAR() Examples – MySQL

October 17, 2021 by Ian

In MySQL, YEAR() is a built-in date and time function that returns the year from a given date expression.

It returns the year as a number in the range 1000 to 9999. For zero dates, it could return 0 or NULL with a warning, depending on the values in your sql_mode.

Read more

Categories MySQL Tags date functions, dates, functions, what is
Older posts
Newer posts
← Previous Page1 … Page48 Page49 Page50 … Page151 Next →

About | Privacy Policy

© 2026 Database.Guide • All rights reserved