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 (163)
  • 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)

Tag: what is

How CONCAT() Works in MariaDB

Posted on April 7, 2021April 8, 2021 by Ian

In MariaDB, CONCAT() is a built-in string function that performs a string concatenation on its arguments. It returns the string that results from concatenating its arguments.

Concatenation is the operation of joining two or more strings end-to-end.

CONCAT() accepts one or more arguments, all of which are returned as a single concatenated string.

Continue reading →
MariaDB functions, string functions, what is

How OCTET_LENGTH() Works in MariaDB

Posted on April 7, 2021April 7, 2021 by Ian

In MariaDB, OCTET_LENGTH() is a built-in string function that returns the length of the given string argument, measured in octets (bytes).

OCTET_LENGTH() is a synonym for LENGTHB().

It’s also a synonym for LENGTH() when not in Oracle mode (LENGTH() behaves differently in Oracle mode).

Continue reading →
MariaDB functions, string functions, what is

MariaDB LENGTHB() Explained

Posted on April 7, 2021April 27, 2021 by Ian

In MariaDB, LENGTHB() is a built-in string function that returns the length of the given string argument, measured in bytes.

Continue reading →
MariaDB functions, string functions, what is

How LENGTH() Works in MariaDB

Posted on April 6, 2021April 6, 2021 by Ian

In MariaDB, LENGTH() is a built-in string function that returns the length of the given string argument.

When in default mode, the length of the string is measured in bytes. But when in Oracle mode, it’s measured in characters.

Continue reading →
MariaDB functions, string functions, what is

MariaDB CHARACTER_LENGTH() Explained

Posted on April 6, 2021April 6, 2021 by Ian

In MariaDB, CHARACTER_LENGTH() is a built-in string function that returns the length of the given string argument, measured in characters.

CHARACTER_LENGTH() is actually a synonym for CHAR_LENGTH(), so you can use either.

Continue reading →
MariaDB functions, string functions, what is

How CHAR_LENGTH() Works in MariaDB

Posted on April 6, 2021April 6, 2021 by Ian

In MariaDB, CHAR_LENGTH() is a built-in string function that returns the length of the given string argument, measured in characters.

Continue reading →
MariaDB functions, string functions, what is

How CONVERT() Works in MariaDB

Posted on April 5, 2021February 8, 2023 by Ian

In MariaDB, CONVERT() is a built in function that converts a value to another data type. It takes a value of one type and returns a value of the specified type.

You provide the value as an argument when you call the function, as well as the type that you’d like it converted to.

CONVERT() is similar to CAST().

Continue reading →
MariaDB conversion functions, convert, functions, what is

How CAST() Works in MariaDB

Posted on April 5, 2021April 3, 2023 by Ian

In MariaDB, CAST() is a built in function that converts a value to another data type. It takes a value of one type and returns a value of the specified type.

You provide the value as an argument when you call the function, as well as the type that you’d like it converted to.

CAST() works similar to CONVERT().

Continue reading →
MariaDB conversion functions, convert, functions, what is

How CHARSET() Works in MariaDB

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

In MariaDB, CHARSET() is a secondary built in function that returns the character set of a given string.

We provide the string when we call the function.

Continue reading →
MariaDB character sets, functions, string functions, what is

How the BINARY Operator Works in MariaDB

Posted on April 4, 2021April 4, 2021 by Ian

In MariaDB, the BINARY operator casts the string following it to a binary string.

The BINARY operator enables you to do a column comparison byte by byte rather than character by character. This causes the comparison to be case sensitive even if the column isn’t defined as BINARY or BLOB. It also means that leading/trailing spaces become significant.

Continue reading →
MariaDB operators, what is
  • «
  • 1
  • …
  • 109
  • 110
  • 111
  • 112
  • 113
  • …
  • 151
  • »

About Database.Guide | Privacy Policy