A family of Microsoft relational database management systems designed for ease of use.
- Take a look at the VBA help for the DateDiff() function: open the VBA editor by typing Ctrl-G or Alt-F11, press F1 for Help, and search for DateDiff. It'll do what you're asking.
- Use some VBA code in the BeforeUpdate() event of the form in which you're entering the data (you must use a Form, tables don't let you do this), and use DateDiff to calculate the stay. If it's invalid - less than 2 - use MsgBos to warn the user and set Cancel to True to cancel the update.