-
Which of the following is more efficient?
LOAD DATA, INSERT
-
- INSERT
- indeterminate
- same
- LOAD DATA
- None of these
Correct Option: D
In MySQL, the ‘LOAD DATA’ in all forms is more efficient than the ‘INSERT’ because it loads rows in bulk. The server first parses then interprets only one statement instead of many.