I am having problems when formatting a date in SQLSERVER, my query is
SELECT CONVERT(VARCHAR(10), FECHA_INI_FALLA, 13) AS FechaFalla
and the result I get is
12 SEP 2017
and what I want to get is
12/SEP/2017 O 12-SEP-2017
It should be noted that I do not want to show the time, minutes and seconds
What should I change to get that format?