InterviewSolution
Saved Bookmarks
| 1. |
Which of the following options tells mysql to ask for entering the password?(a) -e(b) -p(c) -u(d) -h |
|
Answer» The correct answer is (b) -p Best explanation: The command ‘mysql -p’ (alternative form: –password) prompts for the password. ‘-h’ (alternative form: –host) specifies the host where the MySQL server is running. ‘-u’ is for specifying the username. |
|