I have been working with this only access database that has about 1000 tables with some huge files. THe selected the info that they needed, lets says
Select bank.account, bank.record, bank.amount
where amount >100 or <-100
then they counted the records
Select Bank.account, count(bank.amount) and then they want to update another table that was created. update bank.amount from the count query.
I am trying to figure out how to do this all in one query, instead of having three queries and three tables. I have played around with subqueries and get unupdatablequeries etc,
I would like to select the data, count the records then update the table with those records.
Any Help would be really appreciate.? Thank you in advance.
Select bank.account, bank.record, bank.amount
where amount >100 or <-100
then they counted the records
Select Bank.account, count(bank.amount) and then they want to update another table that was created. update bank.amount from the count query.
I am trying to figure out how to do this all in one query, instead of having three queries and three tables. I have played around with subqueries and get unupdatablequeries etc,
I would like to select the data, count the records then update the table with those records.
Any Help would be really appreciate.? Thank you in advance.