I need to generate an LOV which lists times of day in 30-minute increments. For example:
Display | Return
|
---|
8.00am | 08:00 |
8.30am | 08:30 |
9.00am | 09:00 |
9.30am | 09:30 |
10.00am | 10:00 |
...and so on | |
5.00pm | 17:00 |
5.30pm | 17:30 |
6.00pm | 18:00 |
I presume it must be possible to generate this list on-the-fly and lot have a literal table of possible values. I've been searching for the answer and thought the INTERVAL function might be what I'm after, but that seems to require source data to split-up into slices.
Anyone have any suggestions?