D
Dan Russotto
I have a database where I am using a many-to-many
relationship as an audit trail. For example, table 1
stores project information for several projects. Table #3
is a listing of all of the releases that a given project
can be developed towards. Table #2, the join table, keeps
track of which release a project is in, and allows the
user to change the release (in a new record) that a
project is in, because it may have missed its deadlines.
Each one of the records has a date/time stamp as an audit
trail of how a project has changed releases. We would
like to store the most current or latest release either
in a query or a table with table #1. In other words, take
a value from the most recent record of the join table
(table #2), and store it in a field in table #1. If a new
record is adden in table #2, then this value should
update the value in table #1. Any suggestions out there
on how to implement this? Thanks, Dan
relationship as an audit trail. For example, table 1
stores project information for several projects. Table #3
is a listing of all of the releases that a given project
can be developed towards. Table #2, the join table, keeps
track of which release a project is in, and allows the
user to change the release (in a new record) that a
project is in, because it may have missed its deadlines.
Each one of the records has a date/time stamp as an audit
trail of how a project has changed releases. We would
like to store the most current or latest release either
in a query or a table with table #1. In other words, take
a value from the most recent record of the join table
(table #2), and store it in a field in table #1. If a new
record is adden in table #2, then this value should
update the value in table #1. Any suggestions out there
on how to implement this? Thanks, Dan