MySQL Programming Question:
Download Job Interview Questions and Answers PDF
What Is "mysqldump"?
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.
► "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 Question | Next Question |
How To Show Table Names with "mysqlshow"? | How To Dump a Table to a File with "mysqldump"? |