Time calculations and conversions in Oracle and PL/SQL
Wednesday, October 22nd, 2008This article summarizes the methods for performing simple date/time calculations in Oracle and PL/SQL.
The basics
First of all, there are two data types in Oracle: DATE and TIMESTAMP. The primary difference between two of them is that TIMESTAMP supports higher time precision - up to 10-9 seconds. DATE values can be created by parsing a string [...]