Need to get month and year from Date column
select convert(varchar(10),convert(varchar(20),convert(varchar(4),datename(month, HireDate))+' ' +convert(varchar(4),
year(HireDate)),103))
from employee
in below format (month/year)
09/2015
Mark as Answer if its helpful to you
---
Srihari