InterviewSolution
Saved Bookmarks
| 1. |
What Is Multi Insert? |
|
Answer» Inserting data records into the table using multiple insert statements. Putting a SEMI COLON in front of the KEY word INSERT in the next statement rather than terminating the first statement with a semi colon ACHIEVES it. Insert into Sales “select * from CUSTOMER”; Insert into Loan “select * from customer”;Inserting data records into the table using multiple insert statements. Putting a semi colon in front of the key word INSERT in the next statement rather than terminating the first statement with a semi colon achieves it. |
|