Question: Which statement can you use to load data from a file into the table?
- cat file|mysql
- load data infile (correct if the file is already on the server)
- load data local infile (also correct but only if the file is from the client)
- extended insert statement
Answer: The correct answer of the above question is Option B:load data infile (correct if the file is already on the server)