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 (148)
  • MariaDB (424)
  • Microsoft Access (17)
  • MongoDB (265)
  • MySQL (602)
  • NoSQL (8)
  • Oracle (301)
  • PostgreSQL (480)
  • Redis (210)
  • SQL (697)
  • SQL Server (1,170)
  • SQLite (299)

Category: Relational

How NOT LIKE Works in MariaDB

Posted on April 14, 2021April 14, 2021 by Ian

In MariaDB, the NOT LIKE operator is used to test whether or not a string does not match a pattern. It returns the inverse of the LIKE operator. It’s the same as applying the NOT operator against the whole LIKE expression.

Continue reading →
MariaDB operators, what is

How RIGHT() Works in MariaDB

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

Continue reading →
MariaDB functions, string functions, what is

MariaDB UCASE() Explained

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

Continue reading →
MariaDB functions, string functions, what is

How UPPER() Works in MariaDB

Posted on April 13, 2021April 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().

Continue reading →
MariaDB functions, string functions, what is

MariaDB LCASE() Explained

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

Continue reading →
MariaDB functions, string functions, what is

How to Truncate Text with an Ellipsis in MariaDB

Posted on April 12, 2021April 12, 2021 by Ian

Sometimes you might find that the amount of text returned in a database column is too long. You might just want to return a short snippet of that text, followed by an ellipsis or three dots.

Fortunately, this is relatively easy to do in MariaDB.

Continue reading →
MariaDB how to, string characters

How LEFT() Works in MariaDB

Posted on April 12, 2021April 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.

Continue reading →
MariaDB functions, string functions, what is

How LOWER() Works in MariaDB

Posted on April 12, 2021April 13, 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().

Continue reading →
MariaDB functions, string functions, what is

How LOCATE() Works in MariaDB

Posted on April 12, 2021April 12, 2021 by Ian

In MariaDB, LOCATE() is a built-in string function that returns the position of the first occurrence of a substring within another string.

LOCATE() is similar to the INSTR() function, except that LOCATE() provides the option of specifying a starting position for the search. Also, the argument order is reversed between these two functions.

Continue reading →
MariaDB functions, string functions, what is

How INSTR() Works in MariaDB

Posted on April 12, 2021April 12, 2021 by Ian

In MariaDB, INSTR() is a built-in string function that returns the position of the first occurrence of a substring within another string.

INSTR() is similar to the LOCATE() function, except that LOCATE() provides the option of specifying a starting position for the search. Also, the argument order is reversed between these two functions.

Continue reading →
MariaDB functions, string functions, what is
  • «
  • 1
  • …
  • 134
  • 135
  • 136
  • 137
  • 138
  • …
  • 252
  • »

About Database.Guide | Privacy Policy