- Jan 21, 2005
- 17,722
- 6
- 81
Code:
select time_stamp
from tidalard;
I modified it so it takes only the date using the below query.1998-09-15-17.31.27.001000
Code:
select replace(substr(time_stamp, 0, 10), '-', '/') as ts_date
from tidalard;
Now, I've tried various combinations of to_date() and to_char() to convert this to a date. My desired output is:1998/09/15
09/15/1998
I'm not sure what else to do, if there is a way...
