In my Access 2000 database I need to pull up all records that have expired based on a field called terminate_date.
So if I have terminate_date values of:
id terminate_date
1 8/15/04
2 10/13/04
3 6/1/04
4 9/20/04
Based on today date of 9/15/04:
it would pull up 8/15/04 and 6/1/04.
Is this the right way??
So if I have terminate_date values of:
id terminate_date
1 8/15/04
2 10/13/04
3 6/1/04
4 9/20/04
Based on today date of 9/15/04:
it would pull up 8/15/04 and 6/1/04.
Is this the right way??
Code:
select * from mytable where terminate_date < now();