To follow up on what June said, it is important to understand what queries are, they are not separate entities from the tables. They are just different "views" into your tables.
So, when you update data in a query, you are really updated the underlying data in a table.
By definition, it would be physically impossible to update something in a query, and not have it update the underlying table.
Ok thanks for letting me know of this.
So I created a query, I called it trainANDbookingleg
and this is the query:
Code:
SELECT tid, startid, endid
FROM trains INNER JOIN bookingleg ON trains.trainid = bookingleg.tid;
I am going to use this as the row source, but I am still not sure how I can update two table (the train and bookingLeg) by this?