I have a view created which works fine and I am getting my dates using this
CONVERT (VARCHAR(11), dbrderHeader.DateRequired, 6)
However, I would like to add another column into the view that displays this result as a the name of the day.
02-jun-14 Mon
13-mar-15 Fri
What code do I need to use to make this happen within the view please
Thanks
CONVERT (VARCHAR(11), dbrderHeader.DateRequired, 6)
However, I would like to add another column into the view that displays this result as a the name of the day.
02-jun-14 Mon
13-mar-15 Fri
What code do I need to use to make this happen within the view please
Thanks