According to the DB2 documentation, the result of this type of date calculation has datatype DECIMAL(8,0). You can store the result in any column that has this format or one that is compatible. You can also perform an explicit data type conversion, for example using the CHAR function.
The 8 digit decimal is in YYYYMMDD format, so you will have to interpret the result. By the way, that also means that my previous post was incorrect. '2000-12-25' - current_date evaluates to 304. That means three months and four days, not 304 days. Similarly '2001-12-25' - current_date evaluates to 10304, meaning one year, three months, and four days. [sig][/sig]