MySQL Programming Question:

What Is "mysqldump"?

Tweet Share WhatsApp

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 PDF Read All 110 MySQL Programming Questions
Previous QuestionNext Question
How To Show Table Names with "mysqlshow"?How To Dump a Table to a File with "mysqldump"?