I am trying to change the format of a time that I have stored in my database. Currently, the time is stored as such.
time date
1300 2020-06-01
1310 2020-06-01
1315 2020-06-01
and I would ideally like to get an output that looks like this as a datestamp
time
2020-06-01 13:00:00.000
2020-06-01 13:10:00.000
2020-06-01 13:15:00.000
Is there a function to help in making this conversion?
Thanks