Explain the "mysql" command Line options.Following are the most commonly used mysql command line options:
1. -u username – Specifies username while connecting to server. 2. -p password – Specifies password while connecting to server. 3. -h hostname – Specifies hostname when server is running. Default being local host. 4. -e command – Executes the specified command. 5. "-H" - Specifies that the query output is displayed in HTML table format. 6. "-X" - Specifies that the query output is displayed in XML element format.
|