Heres my select query,
select rac_username, rac_profilepicture, tafd_postid, tafd_postcontent, tafd_postimage_source, DATE_FORMAT(tafd_postadded,'%M %d, %Y') tafd_postadded,tafd_imotion, (select count(rpg_actormakeget) from r_post_getyou where rpg_postrelate = tafd_postid and rpg_isremoved = 0) as tafd_igetyoucount, (select count(rpg_postrelate) from r_post_getyou where rpg_postrelate = tafd_postid and rpg_actormakeget = (select rac_accountid from r_account_credentials where rac_username = 'zheuswalker' )) as isliked, (select count(rfc_commentid) from r_feeds_comments where rfc_feedparent = tafd_postid) rfc_commentcount from t_account_feeds inner join r_account_credentials on r_account_credentials.rac_accountid = t_account_feeds.tafd_postcreator
ORDER BY STR_TO_DATE (tafd_postadded,'%M %d, %Y') ASC
I already, tried ordering the date by desc, but still i dont get the expected result. I want that the date will be sorted in ascending order (Latest to Oldest).
I tried also ordering it by this ( ORDER BY tafd_postadded asc ) and see picture, notice that March 2019 is in between June 2018, November 2018