I expected this to be easier than it is, but I have a table with times in it in a format like:
11:35:00
12:02:00
13:04:00
I need to return those times so it only shows:
11:35
12:02
13:04
Every solution I can find online says to use
date_trunc('minute', time_here)
That just returns the time in the same seconds format that it is already in. I want the seconds completely removed from the format. Any way to just change it to HH:MM format? Thanks