For Installation and use MySQL you have to give some instruction in terminal:
Step 1:
This will install the latest MySQL-server into your machine.sudo apt-get install mysql-server
Step 2:
Which will start the MySQL server.sudo /etc/init.d/mysql start
Step 3:
This instruction will ask you the MySql server that you have entered during installation.mysql -u root -p
Step 4:
This instruction will create a new database “db_test”create database db_test
Step 5:
which will let you inside the database.use db_test
Now use MySQL Query to work with it n Enjoy.
Advertisement
Recent Comments