MySQL - Connection
You can establish the MySQL database using the mysql binary at the command prompt.
Here is a simple example to connect to the MySQL server from the command prompt :
[root@host]# mysql -u root -p
Enter password:******
This will give you the mysql> command prompt where you will be able to execute any SQL command. Following is the result of above command :
The following code block shows the result of above code :
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2854760 to server version: 5.0.9
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
In the above example, we have used root as a user but you can use any other user as well. Any user will be able to perform all the SQL operations, which are allowed to that user.
You can disconnect from the MySQL database any time using the exit command at mysql> prompt.
mysql> exit
Bye
MySQL - Grant_ Revoke Privilege
posted on 2019-11-26 23:15:04 - mysql Tutorials