When doing an ODBC import is there a way to get the results of more than one query? When I select “Copy table(s) from the data source” I get the option to select multiple tables. When I select “Use a query to select the data to transfer” I only get the results from the first query I type in the window.
For example if I enter this in the query window:
Code:
select * from table1 where field1 = 'a';
select * from table2 where field1 = 'b';
It will return one table called “Result” that has the results of the first query only.
Is there a way to get both of the queries to execute?