Below are two functions that convert lowercase characters to their uppercase equivalent in Oracle Database.
Both functions work in a similar way, but with a minor difference.
Below are two functions that convert lowercase characters to their uppercase equivalent in Oracle Database.
Both functions work in a similar way, but with a minor difference.
The following SQLite example returns all rows that contain at least one numerical digit.
In SQL Server, the COALESCE() expression returns its first non-null argument.
The way it works is, we pass a list of arguments to the expression, it evaluates the arguments in order and returns the current value of the first expression that initially doesn’t evaluate to NULL.
When using SQLite, we can use the following methods to extract data from a JSON document.
In MariaDB, we can use the LAST_DAY() function to return the last day of a given month.
This could be the last day of the current month, or the last day of the month based on a date that we specify.
Here’s an option for returning the Unix timestamp when using Oracle Database.
The Unix timestamp (also known as Unix Epoch time, Unix time, or POSIX time) is the number of seconds that have elapsed since 00:00:00 Thursday, 1 January 1970, Coordinated Universal Time (UTC).
The following example deletes duplicate rows in MySQL while ignoring the primary key or unique identifier column.
The example deletes duplicate rows but keeps one. So in the case of two identical rows, it deletes one of them and keeps the other.
In SQL Server, we can use the following method to return a date and time based on a given Unix timestamp.
The Unix timestamp (also known as Unix Epoch time, Unix time, or POSIX time) is the number of seconds that have elapsed since 00:00:00 Thursday, 1 January 1970, Coordinated Universal Time (UTC).
Here are a couple of ways to return the number of days in a given month in Oracle Database. This could be the number of days in the current month, or the number of days in a month based on a specified date.