MySQL Programming Question:

Download Job Interview Questions and Answers PDF

What Is "mysqldump"?

MySQL Programming Interview Question
MySQL Programming Interview Question

Answer:

"mysqldump" - A command-line interface for administrators or end users to export data from the server to files. Here are some sample commands supported by "mysqldump":

► "mysqldump databaseName tableName" - Dumps the specified table in the specified database.
► "mysqldump databaseName" - Dumps all the tables in the specified database.


Download MySQL Programming Interview Questions And Answers PDF

Previous QuestionNext Question
How To Show Table Names with "mysqlshow"?How To Dump a Table to a File with "mysqldump"?