Database.Guide

Skip to content

Beginners

  • What is a Database?
  • Database Tutorial

SQL

  • SQL Tutorial
  • SQL Reference
  • SQL Joins Tutorial
  • SQL Transactions Tutorial
  • Basic SQL Queries

Categories

  • Azure SQL Edge (17)
  • Database Concepts (99)
  • Database Tools (72)
  • DBMS (9)
  • DuckDB (128)
  • MariaDB (424)
  • Microsoft Access (17)
  • MongoDB (265)
  • MySQL (602)
  • NoSQL (8)
  • Oracle (301)
  • PostgreSQL (480)
  • Redis (210)
  • SQL (697)
  • SQL Server (1,169)
  • SQLite (298)

Tag: string functions

How NOT RLIKE Works in MariaDB

Posted on 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.

Continue reading →
MariaDB functions, regex, string functions, what is

How RLIKE Works in MariaDB

Posted on 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.

Continue reading →
MariaDB functions, regex, string functions, what is

How NOT REGEXP Works in MariaDB

Posted on 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).

Continue reading →
MariaDB functions, regex, string functions, what is

How REGEXP Works in MariaDB

Posted on 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.

Continue reading →
MariaDB functions, regex, string functions, what is

MariaDB to Introduce TO_CHAR()

Posted on April 27, 2021September 5, 2021 by Ian

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

Continue reading →
MariaDB conversion functions, functions, news, string functions

How UPDATEXML() Works in MariaDB

Posted on April 27, 2021January 31, 2023 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.

Continue reading →
MariaDB functions, string functions, what is, xml

How WEIGHT_STRING() Works in MariaDB

Posted on 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.

Continue reading →
MariaDB functions, string functions, what is

How UNCOMPRESSED_LENGTH() Works in MariaDB

Posted on 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.

Continue reading →
MariaDB functions, string functions, what is

How COMPRESS() Works in MariaDB

Posted on April 26, 2021 by Ian

In MariaDB, COMPRESS() is a built-in function that compresses a string and returns the result as a binary string.

The COMPRESS() function requires MariaDB to have been compiled with a compression library such as zlib. If MariaDB hasn’t been compiled with such a compression library, COMPRESS() returns null.

Continue reading →
MariaDB functions, string functions, what is

How UNCOMPRESS() Works in MariaDB

Posted on April 26, 2021April 26, 2021 by Ian

In MariaDB, UNCOMPRESS() is a built-in function that uncompresses a string that’s been compressed by the COMPRESS() function.

Continue reading →
MariaDB functions, string functions, what is
  • «
  • 1
  • …
  • 10
  • 11
  • 12
  • 13
  • 14
  • …
  • 33
  • »

About Database.Guide | Privacy Policy