I'm trying to make a query like so:
UPDATE table1 SET col1 = 'foo', col2 = 'bar';
UPDATE table2 SET hi = 'bye', bye = 'hi';
But when I go to save, Access errors with:
Characters found after end of SQL statement
After some searching, it would appear this is because Access can only do one query at a time.
How can I do this?