How do I get the day of the week (in ffffd format, so Mon, Tue etc.) in SQL ? I don\'t see anything about it in the CAST and CONVERT documentation..
You can't ffffd out of the box but you can do the full day
e.g.
select datename(weekday,getdate())
returns 'Monday' and you can just take the first 3 letters.