MySQL IF() Function Explained

MySQL has an IF() function that provides a convenient way to perform a simple “IF/ELSE” operation.

It works similar to a basic IF/ELSE statement, in that it allows us to check for a condition, and return a different result depending on whether it’s true or not.

More specifically, if the first argument to the IF() function is true, the second argument is returned. If it’s not true, the third argument is returned.

Read more

Convert a Unix Timestamp to a Date Value in Oracle

In Oracle Database, we can use the following technique to return a date from a Unix timestamp value.

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).

Read more