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
Insert all those records of table Accounts into table Pending where amt_outstanding is more than 10000.
11 Likes
INSERT INTO Pending
SELECT * FROM Accounts
WHERE amt_outstanding > 10000;
Answered By
6 Likes