Skip to content

Database.Guide

string functions

How LTRIM() Works in MariaDB

April 16, 2021 by Ian

In MariaDB, LTRIM() is a built-in string function that returns a string with any leading space characters removed.

Read more

Categories MariaDB Tags functions, string functions, what is

How LOAD_FILE() Works in MariaDB

April 15, 2021 by Ian

In MariaDB, the LOAD_FILE() function reads a file and returns the file contents as a string.

Read more

Categories MariaDB Tags functions, string functions, what is

How RPAD() Works in MariaDB

April 15, 2021 by Ian

In MariaDB, RPAD() is a built-in string function that pads the right part of a string with a certain number of a specified character.

For example, you can use RPAD() to pad the right part of a string with dots.

Read more

Categories MariaDB Tags functions, string functions, what is

How LPAD() Works in MariaDB

July 22, 2021April 15, 2021 by Ian

In MariaDB, LPAD() is a built-in string function that pads the left part of a string with a certain number of characters.

For example, you can use LPAD() to pad the left part of a string with spaces. Or you could pad a number with leading zeros.

Read more

Categories MariaDB Tags functions, string functions, what is

How RIGHT() Works in MariaDB

April 14, 2021 by Ian

In MariaDB, RIGHT() is a built-in string function that returns a given number of characters from the rightmost part of a string.

RIGHT() accepts two arguments; the string, and the number of characters to return from the right part of that string.

Read more

Categories MariaDB Tags functions, string functions, what is

MariaDB UCASE() Explained

April 13, 2021 by Ian

In MariaDB, UCASE() is a built-in string function that returns its string argument with all characters changed to uppercase.

The result is returned in the current character set mapping. The default is latin1 (cp1252 West European).

UCASE() is a synonym for UPPER().

Read more

Categories MariaDB Tags functions, string functions, what is

How UPPER() Works in MariaDB

April 13, 2021 by Ian

In MariaDB, UPPER() is a built-in string function that returns its string argument with all characters changed to uppercase.

The result is returned in the current character set mapping. The default is latin1 (cp1252 West European).

Another MariaDB function, UCASE() is a synonym for UPPER().

Read more

Categories MariaDB Tags functions, string functions, what is

MariaDB LCASE() Explained

April 13, 2021 by Ian

In MariaDB, LCASE() is a built-in string function that returns its string argument with all characters changed to lowercase.

The result is returned in the current character set mapping. The default is latin1 (cp1252 West European).

LCASE() is a synonym for LOWER().

Read more

Categories MariaDB Tags functions, string functions, what is

How LEFT() Works in MariaDB

April 12, 2021 by Ian

In MariaDB, LEFT() is a built-in string function that returns a given number of characters from the leftmost part of a string.

LEFT() accepts two arguments; the string, and the number of characters to return from the left part of that string.

Read more

Categories MariaDB Tags functions, string functions, what is

How LOWER() Works in MariaDB

April 13, 2021April 12, 2021 by Ian

In MariaDB, LOWER() is a built-in string function that returns its string argument with all characters changed to lowercase.

The result is returned in the current character set mapping. The default is latin1 (cp1252 West European).

Another MariaDB function, LCASE() is a synonym for LOWER().

Read more

Categories MariaDB Tags functions, string functions, what is
Older posts
Newer posts
← Previous Page1 … Page15 Page16 Page17 … Page34 Next →

About | Privacy Policy

© 2026 Database.Guide • All rights reserved