View Full Version : Clear fields on certain date


alguzman
01-07-2002, 11:45 AM
How can you have your table clear some fields exacly one year from now.

jwindon
01-07-2002, 11:58 AM
Use a delete query with criteria set to check the DatePart function against the date in the date field.

Pat Hartman
01-07-2002, 06:16 PM
You should not be storing this data. You should be calculating it. Review the definitions for 1st, 2nd, and 3rd normal forms. An attribute (column) should depend ONLY on the primary key of the table. It sounds like the colum you want to clear depends on the system date in relation to some other date in the table.