to_date

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • TANUJ
    New Member
    • Feb 2006
    • 1

    to_date

    i m working on oracle forms 6i n enable to fetch the record in time format.

    on form, field type is date with format mask hh24:mi
    but when i fetch it using to_char function nd trans it into to_date func
    only date show.. not time..

    help me..

    tanuj
  • richasaraf
    New Member
    • Aug 2005
    • 23

    #2
    to_date format

    use the following pattern.... suppose you want date and not time then write query as :

    select to_date(column_ name, 'DD-Mon-YYYY') from table_name;

    Enjoy !!! :)

    Originally posted by TANUJ
    i m working on oracle forms 6i n enable to fetch the record in time format.

    on form, field type is date with format mask hh24:mi
    but when i fetch it using to_char function nd trans it into to_date func
    only date show.. not time..

    help me..

    tanuj

    Comment

    Working...