TIME Data
Like the DATE data type, the TIME data type is stored internally with hours, minutes, seconds, and optionally, with milliseconds in the ‘HH:MM:SS’ (length 8), and ‘HH:MM:SS.MMMMMM’ (up to length 15) format. A time column must have a valid time value and can not be blank. Valid values are from ‘00:00:000000′ to ‘23:59:59.999999′. If the column is defined as allowing NULLs, then NULL should be used for a missing time.
Â
Example: COL1 TIME
Sample value is: ‘17:39.45′
Â
Notice that the keyword, TIME, is a complete definition of the data type and has no value defined in parentheses.
See Sample Data Type Values.
TIME WITHOUT TIME ZONE is the same as TIME. In this course, we use TIME.

