1

I am using Report builder. Is there any ways to display the date of datetime parameter in dd-MMM-yyyy ( 1-Mar-2017) format?

Noobie
  • 37
  • 1
  • 7

1 Answers1

1

SQL Server's CONVERT() function should be able to handle this:

SELECT CONVERT(varchar, date, 106) AS date_formatted
FROM yourTable

Here date is the column containing dates which you want to format as you specified in your question.

Tim Biegeleisen
  • 502,043
  • 27
  • 286
  • 360