Home » MYSQL » Mysql Setup » Question
  1. What is ‘tamp’ in the following command?
    mysql -h xyz.host.try.net -p -u tamp
    1. password
    2. table name
    3. user name
    4. host name
    5. 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.



Your comments will be displayed only after manual approval.