Table Empl has same structure as that of table EMPL. Write a query statement to insert data from table NewEmpl into EMPL where salary and comm is more than Rs. 4000.
INSERT INTO Empl SELECT * FROM NewEmpl WHERE SAL > 4000 AND COMM > 4000 ;