I have a date column where the date format is
2016-07-24
in SQL Server now. Is there any possible way to retrieve the date format as
24-07-2016
through a select statement? and My presently I am using this query
Convert(varchar(10),CONVERT(date,event_enddate,105),126) as "end"
What am I missing here?