October 2002
Beginner
864 pages
18h 41m
English
The conversion of dates takes place for any number of reasons. Conversions are mainly used to alter the data type of values defined as DATETIME values.
Typical reasons for date conversions are
To compare date values of different data types
To format a date value as a character string
To convert a character string into a date format
The ANSI CAST operator is used to convert data types into other data types. The basic syntax is |
CAST ( EXPRESSION AS NEW_DATA_TYPE )
Individual implementations of SQL may use another function instead of CAST. For example, in Oracle, the TO_DATE function is used to convert a character string to ...
Read now
Unlock full access