Listed here are the additional date and time data types for Oracle:
- TIMESTAMP WITH TIME ZONE: This data type in Oracle is a variation on TIMESTAMP and includes the time zone and time zone offset. The time zone offset shows the difference from UTC to the local time zone in hours and minutes. MySQL doesn't allow for time zone awareness with data types, so you will need to store the date in the DATETIME field without time zone information.
- TIMESTAMP WITH LOCAL TIME ZONE: This data type in Oracle is a variation on TIMESTAMP, but doesn't include the time zone and time zone offset. The time zone offset shows the difference from UTC to the local time zone in hours and minutes. In this data type, the data is stored in the database time ...