Friday 28 June 2013

Query to Get Records of last n days from table in Sql Server 2008

Try this Sql Query to get all the record of yesterday.......or last 15 days record or last n days records......

"select * from tablename WHERE CONVERT(VARCHAR(10),colname, 112)>= CONVERT(VARCHAR(10),DATEADD(DAY,-(n-1),GETDATE()), 112)"

No comments:

Post a Comment