[Solved] How to subtract 18 months from the current date in MS-ACCESS [closed]


For MS-ACCESS, DateADD should work. Try something like this:

select name 
from babies where birthdate >= DATEADD('m', -18, Date()) 

2

solved How to subtract 18 months from the current date in MS-ACCESS [closed]