Home » MYSQL » MySQL Optimization » Question
  1. Which is more efficient?
    LOAD DATA, INSERT
    1. same
    2. indeterminate
    3. LOAD DATA
    4. INSERT
    5. None of these
Correct Option: C

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.



Your comments will be displayed only after manual approval.