In PostgreSQL, we can use the initcap()
function to format a string of text to use initial capitals. That is, it converts the first letter of each word to upper case and the rest to lower case.
Tag: how to
2 Ways to Show All Databases in PostgreSQL (psql)
Here are a couple of ways to show a list of databases when using psql
with PostgreSQL.
The first option can be used when we’re already connected to PostgreSQL. The second option can be used when we don’t currently have a connection to Postgres.
Continue readingAdd Days to a Date in SQLite
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.
nullvalue: Show NULL Values in SQLite
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.
How to Convert to Uppercase in MariaDB
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()
.
How to Detect if a Value Contains at Least One Numerical Digit in MariaDB
When 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 readingHow to Convert to Uppercase in SQLite
In SQLite we can use the upper()
function to convert lowercase characters to uppercase.
2 Ways to Return the Julian Day in SQLite
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 readingSubtract Years from a Date in PostgreSQL
In PostgreSQL, we can use the -
operator to subtract one or more years from a date.
Fix “ERROR 1136 (21S01): Column count doesn’t match value count at row 1” when Inserting Data in MariaDB
If you find yourself getting an error that reads something like “ERROR 1136 (21S01): Column count doesn’t match value count at row” in MariaDB, it’s probably because you’ve specified the wrong number of expressions for the number of columns in the column when attempting to insert data into a table.
In other words, you’re trying to insert too many columns or not enough columns.
Continue reading