There are several ways of doing it
First of all you tables have absolutely same structure eg fields order, names and data types, you can load data from multiple tables using mask.
or you can create multiple import scripts and execute them one after another.
Or you can use select statement as datasource fro example
Select * from orders1
Union all
Select * from orders2
Mike