Here is the sql:
INSERT INTO CommonLine ( BorrowerLastName, BorrowerFirstName, PermBorrowerAddr1, PermBorrowerAddr2, PermBorrowerCity, PermBorrowerState, PermBorrowerZip )
SELECT LoanInfo.last_name, LoanInfo.first_name, LoanInfo.st_addr, LoanInfo.add_addr, LoanInfo.city, LoanInfo.state, Left([Zip],5) AS Expr3
FROM LoanInfo;
Thanks