MySQL Programming Question:
Download Job Interview Questions and Answers PDF
What Is "mysqlimport"?
Answer:
"mysqlimport" - A command-line interface for administrators or end users to load data files into tables program tool to load data into tables. Here is a sample commands supported by "mysqlimport":
► "mysqlimport databaseName fileName" - Imports the data from the specified file to the specified database. The data will be loaded into the table who's name matches the specified file name.
► "mysqlimport databaseName fileName" - Imports the data from the specified file to the specified database. The data will be loaded into the table who's name matches the specified file name.
Download MySQL Programming Interview Questions And Answers
PDF
Previous Question | Next Question |
How To Dump a Table to a File with "mysqldump"? | How To Load Data Files into Tables with "mysqlimport"? |