I have 2 tables both containing identical structure and that include a "fax number" field and a "remove" yes/no checkbox field.
I have created a simple select query with the following SQL:
SELECT faxnumbers.SoldToFax, faxnumbers.Remove
FROM faxnumbers INNER JOIN current_removals ON faxnumbers.SoldToFax = current_removals.SoldToFax;
When I attempt to make a change to the remove field changing it from no to yes, it is not allowed.
how is this corrected so that i can make changes to the underlying tables
I have created a simple select query with the following SQL:
SELECT faxnumbers.SoldToFax, faxnumbers.Remove
FROM faxnumbers INNER JOIN current_removals ON faxnumbers.SoldToFax = current_removals.SoldToFax;
When I attempt to make a change to the remove field changing it from no to yes, it is not allowed.
how is this corrected so that i can make changes to the underlying tables