Computer Science
Insert all those records of table Accounts into table Pending where amt_outstanding is more than 10000.
DDL & DML
13 Likes
Answer
INSERT INTO Pending
SELECT * FROM Accounts
WHERE amt_outstanding > 10000;
Answered By
7 Likes
Insert all those records of table Accounts into table Pending where amt_outstanding is more than 10000.
13 Likes
INSERT INTO Pending
SELECT * FROM Accounts
WHERE amt_outstanding > 10000;
Answered By
7 Likes