Import a CSV file into MySQL database
Answer:
To import a CSV file into the MySQL database, you can use the mysqlimport command.
# mysqlimport mytable.csv test.mytable
The above command import the CSV file into the table named `mytable` in the database `test`