use this Query for get last month Records
select *From table where month(date)=04 and year(date)=2014
to get the Month and year
DECLARE @MONTHLYRECORD INT
declare @year int
select @MONTHLYRECORD= DATEPART(MONTH ,GETDATE())
select @year=DATEPART(YEAR,GETDATE())
SELECT @MONTHLYRECORD,@year