Question:Which of the following will dump the whole MySQL database to a file?
A mysql -e "select * from myTable" -u myuser -pxxxxxxxxx mydatabase > mydumpfile.txt
B mysql -e "select * from myTable" mydatabase > mydumpfile.txt
C SELECT * from myTable FIELDS TERMINATED BY ',' ENCLOSED BY '"' LINES TERMINATED BY '\n'
D None
+ AnswerD
+ Report