I have a datetime column in MySQL.
datetime
How can I convert it to the display as mm/dd/yy H:M (AM/PM) using PHP?
This should format a field in an SQL query:
SELECT DATE_FORMAT( `fieldname` , '%d-%m-%Y' ) FROM tablename