I have a table where one of the columns is entered as CURRENT_TIMESTAMP.
I am pulling the data from the table and displaying it on my site. But can't figure out how to convert the date into a more reader friendly format.
Right now it looks like this: 2020-09-17T19:56:24.000Z (I also need to figure out how to convert to my timezone.)
But I want it to display like this: 09-17-2020 19:56 (would even prefer 07:56pm, but not critical)
I've seen a few examples where you can reformat it during the query. But all the examples I've seen are pulling just the date. I'm pulling everything. I'm fine with running a function on it after the query to convert... but I haven't been able to figure it out.