sql - How to extract only the Date from this Oracle DB TimeStamp? -
this question has answer here:
i have following value in database column (i´m using oracle , datatype of database column timestamp(5)):
21/10/2014 10:10:45,00000
i want extract date value. , good, if possible format date 21/10/2014 21.10.2014.
how can oracle?
thank helping me !
select to_char(<column_name>,'dd.mm.yyyy') your_table
Comments
Post a Comment