Vidyalelo
MySQL · Q105

MySQL

Programming · MySQL · question 105

Q105

What performs administrative operations?

A.
mysqldump
B.
mysqladmin
Answer
C.
mysqlimport
D.
mysqlexport

Answer: Option B

Solution

Answer: Option B
Solution:
This question is asking about which command in MySQL is used to perform administrative tasks.
Let's break down the options:
Option A: mysqldump - This command is used for backing up your MySQL database, not for general administration.
Option B: mysqladmin - This is the correct answer! mysqladmin is the command used for performing various administrative operations in MySQL.
Option C: mysqlimport - This command is used to import data into a MySQL database, not for administration.
Option D: mysqlexport - This command is used to export data from a MySQL database, not for administration.
So, the answer is Option B: mysqladmin.