MS Access. I'm querying a table that displays a client_name, release_name, release_date for a number of clients and releases. I'm trying to write a query that returns the following data for one client: client_name, release_name, from_release_date, to_release_date. In this case the from_release_date is the original release_date from the underlying table but the new field in the query to_release_date is the day before the next release was installed. For example:
+-------------+-----------+-------------------+-------------------+
| client_name | release | from_release_date | to_release date |
+-------------+-----------+-------------------+-------------------+
| client A | release 1 | 01/01/2017 | 01/02/2017 |
| client A | release 2 | 02/02/2017 | 02/03/2017 |
| client A | release 3 | 03/03/2017 | |
+-------------+-----------+-------------------+-------------------+
How do I create this 'to_release_date' field?