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..
Many ways to do it, here's one way:
SELECT LEFT(DATENAME(dw, GETDATE()), 3)