Computer Science

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

DDL & DML

11 Likes

Answer

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

Answered By

6 Likes


Related Questions