You want to use DATE_FORMAT :
SELECT a.ID, date_format(a.CreationDate, '%W %m/%d/%Y %l:%i %p') CreationDate, a.Content, a.Type, u.Nickname FROM Announcements a INNER JOIN Accounts u ON a.FromAccountID = u.AccountID WHERE a.Status = '1' AND u.Status = '1' ORDER BY a.ID DESC
The MySQL documentation will show which qualifiers you will use to get the format you want (see SQL Demo ).
If you want to save seconds, you will use:
date_format(a.CreationDate, '%W %m/%d/%Y %r')
Taryn source share