In SQLite, we can use the DATE()
function to add a given number of days to a date.
If we’re dealing with datetime values, we can use the DATETIME()
function.
In SQLite, we can use the DATE()
function to add a given number of days to a date.
If we’re dealing with datetime values, we can use the DATETIME()
function.
When using the SQLite command line interface (CLI), by default, whenever a query returns a null value, the output is the empty string (''
).
We can change this by using the -nullvalue
command line option when launching SQLite.
We can also use the .nullvalue
dot command if we’re already in the SQLite CLI.
In MariaDB, we can use the UPPER()
function to convert lowercase characters to their uppercase equivalent.
We can alternatively use UCASE()
, which is a synonym of UPPER()
.
Below is a full list of JSON functions and JSON operators available in SQLite.
Continue readingWhen working with MariaDB, you may occasionally find yourself needing to return all rows that contain at least one numerical digit.
In such cases, you may find the following example useful.
Continue readingIn SQLite we can use the upper()
function to convert lowercase characters to uppercase.
Here are two methods for returning the Julian Day in SQLite.
The Julian Day is the fractional number of days since noon in Greenwich on November 24, 4714 B.C. It’s the continuous count of days since the beginning of the Julian period, and is used primarily by astronomers, and in software for easily calculating elapsed days between two events.
Continue readingIn SQLite, the ->>
operator extracts a subcomponent from a JSON document and returns an SQL representation of that subcomponent.
The ->>
operator was first introduced in SQLite version 3.38.0 (released on 22 February 2022).
In SQLite, the ->
operator extracts a subcomponent from a JSON document and returns a JSON representation of that subcomponent.
The ->
operator was first introduced in SQLite version 3.38.0 (released on 22 February 2022).
In PostgreSQL, we can use the -
operator to subtract one or more years from a date.