![]() |
![]() |
|
|
![]() |
![]() |
ALLBASE/SQL Reference Manual: HP 3000 MPE/iX Computer Systems > Chapter 7 Data Types![]() Date/Time Operations |
|
DATE, TIME, DATETIME, or INTERVAL values may only be assigned to a column with a matching data type or to a fixed or variable length character string column or host variable. Otherwise an error condition is generated. All rules regarding assignment to a character string are also true for date/time assignment to a character string variable or column. Conversions of the individual fields of a date/time data type follow the rules given earlier in this subsection for the corresponding data type.
DATE, TIME, DATETIME, and INTERVAL data types behave similar to character strings in data manipulation statements. The examples below illustrate this. INSERT DATETIME, DATE, TIME and INTERVAL values:
SELECT DATE and TIME values:
DATETIME and INTERVAL values:
UPDATE DATE and TIME values:
INTERVAL values:
Note that the radix of DATE and TIME data is seconds, whereas the radix of DATETIME and INTERVAL data is milliseconds. Date/time data types can also be converted to formats other than the default formats by the date/time functions described in the "Expressions" chapter. You can use a variety of operations to increment, decrement, add or subtract date, time, datetime, and interval values. The following table shows the valid operations and the data type of the result: Table 7-5 Arithmetic Operations on Date/Time Data Types
These arithmetic operations obey the normal rules associated with dates and times. If a date/time arithmetic operation results in an invalid value (for example, a date prior to '0000-01-01'), an error is generated. If the format for the string does not match the above default type, an error is generated. Another solution is to apply TO_DATE, TO_TIME, TO_DATETIME, and TO_INTERVAL to the string so that the correct format is used. You can also use the Add Months function to add or subtract from the month portion of the DATE or DATETIME column. In the result, the day portion is unaffected, only the month and, if necessary, the year portions are affected. However, if the addition of the month causes an invalid day (such as 89-02-30), then a warning message is generated and the value is truncated to the last day of the month. DATE, TIME, DATETIME, and INTERVAL data types can be used in all predicates except the LIKE predicate. LIKE works only with CHAR or VARCHAR values and so requires the use of the TO_CHAR conversion function to be used with a DATETIME column. Items of type DATE, TIME, DATETIME, and INTERVAL can be compared with items of the same type or with literals of type CHAR or VARCHAR. All comparisons are chronological, which means that the point which is farthest from '0000-01-01 00:00:00.000' is the greatest value. String representations of each data type (in host variables or as literals) can also be compared following normal string comparison rules. Some examples follow:
|
![]() |
||
![]() |
![]() |
![]() |
|||||||||
|