Skip to content

Database.Guide

MariaDB

How CHAR() Works in MariaDB

March 31, 2021 by Ian

In MariaDB, CHAR() is a built-in string function that returns characters based on their code values.

CHAR() accepts one or more integers. It then returns a string consisting of the characters given by the code values of those integers.

Read more

Categories MariaDB Tags functions, string functions, what is

How CHR() Works in MariaDB

March 31, 2021 by Ian

In MariaDB, CHR() is a built-in string function that returns a character based on the code values provided as an argument.

Read more

Categories MariaDB Tags functions, string functions, what is

How ORD() Works in MariaDB

March 30, 2021 by Ian

In MariaDB, ORD() is a built-in string function that returns the numeric character code of the leftmost character of its string argument.

The ORD() function can handle multi-byte characters. This is in contrast to the ASCII() function, which only handles single-byte (8 bit) characters.

Read more

Categories MariaDB Tags functions, string functions, what is

How ASCII() Works in MariaDB

March 30, 2021 by Ian

In MariaDB, ASCII() is a built-in string function that returns the numeric ASCII value of the leftmost character of its string argument.

The ASCII() function only works on 8 bit characters. To get the code for multi-byte characters, use the ORD() function instead.

Read more

Categories MariaDB Tags functions, string functions, what is

Install MariaDB on a Mac

March 30, 2021 by Ian

Here’s how to install MariaDB on a Mac via the Homebrew package manager.

Read more

Categories MariaDB Tags how to, install, mac, macOS
Newer posts
← Previous Page1 … Page42 Page43

About | Privacy Policy

© 2026 Database.Guide • All rights reserved