Hello,
What is the best method to combine a time and date into one field of type date? Let me explain.
These are the two fields in the table:
field, datatype, example
the_time, varchar2(5),17:54
the_date, date, 01/01/2004 (note that the time portion is always set to midnight, 00:00:00)
I want to combine the_date + the_time into one field of datatype = date. It would be something like "01/01/2004 17:54:00".
Thank you,
-Hallux
What is the best method to combine a time and date into one field of type date? Let me explain.
These are the two fields in the table:
field, datatype, example
the_time, varchar2(5),17:54
the_date, date, 01/01/2004 (note that the time portion is always set to midnight, 00:00:00)
I want to combine the_date + the_time into one field of datatype = date. It would be something like "01/01/2004 17:54:00".
Thank you,
-Hallux