How CONCAT_WS() Works in MariaDB

In MariaDB, CONCAT_WS() is a built-in string function that stands for Concatenate With Separator.

CONCAT_WS() performs a string concatenation on its arguments, with the first argument being the separator for the remaining arguments.

Concatenation is the operation of joining two or more strings end-to-end.

CONCAT_WS() accepts two or more arguments (although providing just two arguments would result in nothing being concatenated, due to the first argument being the separator, and the second being a single string to be concatenated with… nothing else).

Read more

How CONCAT() Works in MariaDB

In MariaDB, CONCAT() is a built-in string function that performs a string concatenation on its arguments. It returns the string that results from concatenating its arguments.

Concatenation is the operation of joining two or more strings end-to-end.

CONCAT() accepts one or more arguments, all of which are returned as a single concatenated string.

Read more

How CONVERT() Works in MariaDB

In MariaDB, CONVERT() is a built in function that converts a value to another data type. It takes a value of one type and returns a value of the specified type.

You provide the value as an argument when you call the function, as well as the type that you’d like it converted to.

CONVERT() is similar to CAST().

Read more

How CAST() Works in MariaDB

In MariaDB, CAST() is a built in function that converts a value to another data type. It takes a value of one type and returns a value of the specified type.

You provide the value as an argument when you call the function, as well as the type that you’d like it converted to.

CAST() works similar to CONVERT().

Read more