vendredi 15 juillet 2016

SQL Output to get only last 7 days output while using convert on date

I am using the below SQL Query to get the data from a table for the last 7 days.

SELECT * 
FROM   emp 
WHERE  date >= (SELECT CONVERT (VARCHAR(10), Getdate() - 6, 101)) 
       AND date <= (SELECT CONVERT (VARCHAR(10), Getdate(), 101)) 
ORDER  BY date 

The data in the table is also holding the last year data.

Problem is I am getting the output with Date column as

10/11/2013
10/12/2012
10/12/2013
10/13/2012
10/13/2013
10/14/2012
10/14/2013
10/15/2012
10/15/2013
10/16/2012
10/16/2013
10/17/2012
10/17/2013

I don't want the output of 2012 year. Please suggest on how to change the query to get the data for the last 7 days of this year.

Aucun commentaire:

Enregistrer un commentaire