I don't have any experience in PL/SQL but I think I need it.
I have the following problem:
I have a table which contains:
Object Station Time
744 2 23:40:00
744 3 23:45:00
744 4 23:48:00
744 8 23:59:00
744 9 00:02:00
744 13 00:15:00
Now I need a new field with date:
Object Station Time Date
744 2 23:40:00 26.03.2013
744 3 23:45:00 26.03.2013
744 4 23:48:00 26.03.2013
744 8 23:59:00 26.03.2013
744 9 00:02:00 27.03.2013
744 13 00:15:00 27.03.2013
You can see that’s the date has been changed if the time has reached 00:00:00
In SQL I don’t have any idea how I could do this - so now I think I need a PL/SQL script to create the Date.