Insert all those records of table Account into table Pending where amt_outstanding is more than 10000.

INSERT INTO Pending
SELECT * FROM Account
WHERE amt_outstanding > 10000;

error: Content is protected !!