The records in the table represents the employee ID of each employee. Assume the table name is EMPLOYEES and the field name of employee IDs is ID, the following SQL query inserts Emp3 and Emp4 into the employees table.
INSERT INTO EMPLOYEES (ID) values (Emp3), (Emp4)
The complete question requires that we list the pros and cons of solving the problem using Index sequential access method (ISAM).
The advantage of using ISAM is that priorities are given to the indices of the records being inserted. So, Emp3 and Emp4 will be inserted immediately after Emp2.
However, a major disadvantage of using ISAM is that it is very expensive to keep the indices in a sequential order;
See attachment for the illustration of Index sequential access method (ISAM).
Read more about Index sequential access method (ISAM) at:
https://brainly.com/question/4692093