Insert all those records of table Accounts into table Pending where amt_outstanding is more than 10000.
INSERT INTO Pending SELECT * FROM Accounts WHERE amt_outstanding > 10000;