In my table, dates are stored like this: 2011-03-03T13:30:00
I\'m trying to output dates like this: March 3, 2011 1:30 PM
I\'d much rather work it into the q
Use DATE_FORMAT:
DATE_FORMAT(date, "%M %e, %Y %h:%i %p")