Hi, thanks for your time!
I'm stuggling with the simple stuff, and I'm pretty sure it's a syntax thing.
I'm helping a friend with her accounts (access offline) program, and need to basically automatically and continually delete any records that are over three months old.
The records are stored in a 'REPAIR' table in the format 'dd/mm/yy'
Being used to php, I would just convert the date to unix timestamp, and run a loop such as:
delete from 'REPAIR' where date<three_months_before_today
...having used some sort of simple loop to calculate the date three months prior.
If anyone could help that would be marvellous!
(if it makes things any easier, whole months would be fine, ie it's November now, delete all records prior to September)
Many thanks


I'm stuggling with the simple stuff, and I'm pretty sure it's a syntax thing.
I'm helping a friend with her accounts (access offline) program, and need to basically automatically and continually delete any records that are over three months old.
The records are stored in a 'REPAIR' table in the format 'dd/mm/yy'
Being used to php, I would just convert the date to unix timestamp, and run a loop such as:
delete from 'REPAIR' where date<three_months_before_today
...having used some sort of simple loop to calculate the date three months prior.
If anyone could help that would be marvellous!
(if it makes things any easier, whole months would be fine, ie it's November now, delete all records prior to September)
Many thanks
