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

8 Ways to Add Minutes to a Datetime in MariaDB

Posted on June 26, 2021 by Ian

MariaDB provides many ways to perform date arithmetic. This includes adding or subtracting a certain number of a given date part from a date or datetime value.

In this article, I present 8 ways to add one or more minutes to a datetime value in MariaDB.

Continue reading →
MariaDB dates, how to

MariaDB SCHEMA() Explained

Posted on June 26, 2021 by Ian

In MariaDB, the SCHEMA() function is a synonym for the DATABASE() function. It returns the default (current) database name.

The result is returned as a string in the utf8 character set.

Continue reading →
MariaDB functions, what is

MariaDB DATABASE() Explained

Posted on June 26, 2021June 26, 2021 by Ian

In MariaDB, DATABASE() is a built-in function that returns the default (current) database name.

The result is returned as a string in the utf8 character set.

Continue reading →
MariaDB functions, what is

MariaDB SYSTEM_USER() Explained

Posted on June 25, 2021June 25, 2021 by Ian

In MariaDB, SYSTEM_USER() is a synonym for the USER() function. It returns the current MariaDB user name and host name, given when authenticating to MariaDB.

Continue reading →
MariaDB functions, what is

MariaDB SESSION_USER() Explained

Posted on June 25, 2021June 26, 2021 by Ian

In MariaDB, SESSION_USER() is a synonym for the USER() function. It returns the current MariaDB user name and host name, given when authenticating to MariaDB.

Continue reading →
MariaDB functions, what is

MariaDB CURRENT_USER() Explained

Posted on June 25, 2021June 26, 2021 by Ian

In MariaDB, CURRENT_USER() is a built-in function that returns the user name and host name combination for the MariaDB account that the server used to authenticate the current client.

Continue reading →
MariaDB functions, what is

MariaDB USER() Explained

Posted on June 25, 2021June 26, 2021 by Ian

In MariaDB, USER() is a built-in function that returns the current MariaDB user name and host name, given when authenticating to MariaDB.

Continue reading →
MariaDB functions, what is

4 Functions to Return the Year from a Date in MariaDB

Posted on June 24, 2021 by Ian

Below are 4 functions that enable you to return the year from a date in MariaDB. Three functions return just the year, and one returns both the year and week.

Continue reading →
MariaDB date format, dates, how to

MariaDB CONNECTION_ID() Explained

Posted on June 24, 2021 by Ian

In MariaDB, every thread (including each event) has an ID that is unique among the set of currently connected clients. The CONNECTION_ID() function is a built-in function that returns the connection ID (thread ID) for the connection.

Continue reading →
MariaDB functions, what is

MariaDB String Functions (Full List)

Posted on June 23, 2021 by Ian

This article contains a full list of built-in MariaDB string functions and operators.

Continue reading →
MariaDB reference, string functions
  • «
  • 1
  • …
  • 116
  • 117
  • 118
  • 119
  • 120
  • …
  • 253
  • »

About Database.Guide | Privacy Policy