• Create your WHERE something like:

    WHERE  [your_date_column] > DATEADD (year, -5 , GETDATE() ) 

    Try to not wrap the function around your column so the query can still use any indexes on that column.

    ** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **