I have a table called tbl_weightlifting
It has hundreds of records of players on there weight lifting.Fields are
What I want to do is be able to save this table as a history table, meaning as players leave and new ones come in I want to have a records table that will hold all the history.
At the same time I want to delete the Player records from the current table as they graduate.
i know I can use a query but not sure how to do this.
This way they archived history table still holds all time records, but they new table only
reflects current athletes
the table is set up like this
Weight_ID ( auto #)
Player_ID
Lift_ID
Weight LIfted
Date
Program_ID ( what program they were using)
It has hundreds of records of players on there weight lifting.Fields are
What I want to do is be able to save this table as a history table, meaning as players leave and new ones come in I want to have a records table that will hold all the history.
At the same time I want to delete the Player records from the current table as they graduate.
i know I can use a query but not sure how to do this.
This way they archived history table still holds all time records, but they new table only
reflects current athletes
the table is set up like this
Weight_ID ( auto #)
Player_ID
Lift_ID
Weight LIfted
Date
Program_ID ( what program they were using)