ROUND(date) Function in Oracle

In Oracle, the ROUND(date) function returns a date rounded to a specified date unit.

By default, it rounds the date to the nearest day, but you can provide an optional argument that specifies an alternative unit to use.

Oracle also has a ROUND(number) syntax, which is used on number. This article is solely about the ROUND(date) syntax, which is used on date.

Read more

FROM_TZ() Function in Oracle

In Oracle Database, the FROM_TZ() function converts a timestamp value and a time zone to a TIMESTAMP WITH TIME ZONE value.

You pass the timestamp value and the time zone as two separate arguments, and the function returns them as a TIMESTAMP WITH TIME ZONE value.

Read more