-
What is ‘tamp’ in the following command?
mysql -h xyz.host.try.net -p -u tamp
-
- password
- table name
- user name
- host name
- None of these
Correct Option: C
‘tamp’ is the name of the user. The user will be prompted for password due to the ‘-p’ option. ‘xyz.host.try’ is the host name here. The entire command specifies the host-user pair and prompts for password to establish the connection.