Problem with name of day and month

Two suggestions:
1) Server-side
With the FORMAT() you can define language…
SELECT FORMAT (getdate(), 'dddd, MMMM, yyyy','es-es') as date --Spanish
Check here:

2) Client-side by usinf moment.js:
-Your SQL contains only the actual date,
-create a custom formatter as described here:

and use the formatter to display the formatted date in your page

2 Likes