The DATEADD function allows you to compute a date that is 6 months ago:
Code:
DATEADD(m, -6, current_timestamp)
use this to compare your date column:
Code:
SELECT *
FROM yourtable
WHERE yourdatecolumn > DATEADD(m, -6, current_timestamp);
Jeff Mason
Custom Apps, Inc.
www.custom-apps.com