I have a table that contains a column named time_created
representing a date: 2014-02-19 23:49:59.998557
. Now I need to generate a new table that consists of year
, month
, day
and quarter
columns.(For analysis purpose).
For example, 2014-02-19 23:49:59.998557
should be converted to:
year| month | day | quarter
2014 | 2 | 19 | Q1
How can I do that using Kettle? Thanks!