Maybe this question could have been awnsered in nother post, but I can not find anything similair to my problem (or I can not see the solution).
My question is as follow:
I work in an Oracle11g database and I would like to pass my to_date value to hour value. I wrote it like this:
insert into OPENINGSTIJDEN (id, dag, openingstijd, sluitingstijd, winkel_nummer)
values(2, 'dinsdag', to_date('09:00:00','hh24:mi:ss'), to_date('18:00:00','hh24:mi:ss'), 10);
My results are this
I only get dates like 01-03-15. Is it my to_date? I can not find the solution on the web
Thanks in advance