Skip to content

Database.Guide

How REGEXP_INSTR() Works in MariaDB

April 29, 2021April 29, 2021 by Ian

In MariaDB, the REGEXP_INSTR() function returns the starting index of a substring that matches the regular expression pattern.

The index starts at 1. If there’s no match, the result is 0.

Read more

Categories MariaDB Tags functions, regex, string functions, what is

How NOT RLIKE Works in MariaDB

April 28, 2021 by Ian

In MariaDB, NOT RLIKE is a negation of the RLIKE operator.

In other words, any time the RLIKE operator would return 1, NOT RLIKE will return 0.

Read more

Categories MariaDB Tags functions, regex, string functions, what is

How RLIKE Works in MariaDB

April 28, 2021 by Ian

In MariaDB, the RLIKE operator is used to determine whether or not a string matches a regular expression. It’s a synonym for REGEXP.

If the string matches the regular expression provided, the result is 1, otherwise it’s 0.

Read more

Categories MariaDB Tags functions, regex, string functions, what is

How NOT REGEXP Works in MariaDB

April 28, 2021 by Ian

In MariaDB, the NOT REGEXP operator is a negation of the REGEXP operator.

If the string matches the regular expression provided, the result is 0, otherwise it’s 1. This is the opposite result to what the REGEXP would return (when it isn’t prefixed with NOT).

Read more

Categories MariaDB Tags functions, regex, string functions, what is

How REGEXP Works in MariaDB

April 28, 2021 by Ian

In MariaDB, the REGEXP operator is used to determine whether or not a string matches a regular expression.

If the string matches the regular expression provided, the result is 1, otherwise it’s 0.

Read more

Categories MariaDB Tags functions, regex, string functions, what is

MariaDB Introduces a JSON_TABLE() Function

June 29, 2021April 27, 2021 by Ian

The 10.6.0 release of MariaDB has added a JSON_TABLE() function.

The JSON_TABLE() function returns a representation of a JSON document as a relational table with the specified columns. It enables you to map JSON paths into relational columns to be returned in its results set.

Read more

Categories MariaDB Tags functions, news

MariaDB to Introduce TO_CHAR()

September 5, 2021April 27, 2021 by Ian

The TO_CHAR() function has beeen introduced in MariaDB 10.6.1.

Read more

Categories MariaDB Tags conversion functions, functions, news, string functions

How UPDATEXML() Works in MariaDB

January 31, 2023April 27, 2021 by Ian

In MariaDB, UPDATEXML() is a built-in function that replaces a single portion of a given fragment of XML markup with a new XML fragment, then returns the updated XML.

Read more

Categories MariaDB Tags functions, string functions, what is, xml

How WEIGHT_STRING() Works in MariaDB

April 27, 2021 by Ian

In MariaDB, WEIGHT_STRING() is a built-in function that returns the weight string for the input string. The return value is a binary string that represents the comparison and sorting value of the string.

Read more

Categories MariaDB Tags functions, string functions, what is

How UNCOMPRESSED_LENGTH() Works in MariaDB

April 27, 2021 by Ian

In MariaDB, UNCOMPRESSED_LENGTH() is a built-in function that returns the length of a compressed string before it was compressed with the COMPRESS() function.

Read more

Categories MariaDB Tags functions, string functions, what is
Older posts
Newer posts
← Previous Page1 … Page254 Page255 Page256 … Page423 Next →

About | Privacy Policy

© 2026 Database.Guide • All rights reserved