Assuming you are using SQL Server 2012 or later, you can use the FORMAT function:
SELECT FORMAT([Date], 'MMM', 'en-US')
Adapt the locale if necessary.
Since you are using SQL Server 2008, I would use
SELECT LEFT(DATENAME(MONTH, [Date]), 3)
source share