I'm using the query below to add 14 days to a date
SELECT DATE_ADD(Paper_Sent_Dt,INTERVAL 14 DAY) as Rem_date from Referee_History;
the date format is yyyy/mm/dd but I require it in dd/mm/yyyy format. Is it possible to convert the date format while using the DATE_ADD function??
as in, something like this
SELECT CONVERT(DATE_ADD(Paper_Sent_Dt,INTERVAL 14 DAY),%d-%m-%y) as Rem_date from Referee_History
if yes, please tell me how Thanks in advance