It should look like what I have below using the LOAD statements and both tables will load.
Why are you not using the data selector interface to select your data and to insert the script for you?
LOAD CategoryID,
CategoryName,
Description;
SQL SELECT CategoryID,
CategoryName,
Description
FROM GettingStarted.dbo.Categories;
LOAD CustomerID,
Address,
City,
Customer,
ContactName,
Country,
Fax,
Phone,
PostalCode;
SQL SELECT CustomerID,
Address,
City,
Customer,
ContactName,
Country,
Fax,
Phone,
PostalCode
FROM GettingStarted.dbo.Customers;
Please mark the appropriate replies as CORRECT / HELPFUL so our team and other members know that your question(s) has been answered to your satisfaction.