Yes I am Found MySQL in Service under Adminstartion Tool & I Found it this Place. It's States are 'Started'. Plz Suggest me What Can I Do Next.
OK. Now you should create a user - it's not a good idea to use 'root' except when absolutely necessary.
When you are in a DOS shell window, you should be able to run the client and log in as 'root' with no password, unless you added a password during installation.
Change to the /bin directory of MySQL.
Enter: mysql --user root -h localhost
You should see a new prompt like this:
mysql>
This is the client prompt. You can now enter SQL commands, such as
mysql> show databases;
If this works then quit by entering 'exit'.
I don't know what version of MySQL you installed, but the mysql.com web site has documentation for creating a user. Then you must GRANT that user whatever rights you want them to have (create, select, delete, etc.).
Once you have a user (with password) created, then try this:
If MySQL is in your PATH you should be able to do something like this:
mysql --user=xxxxx --password=yyyyy -h localhost
and then you should see a new prompt like this:
mysql>
Again enter 'show databases;'
If this works, you have successfully created a user besides 'root', which is a good thing.
Enter 'exit' to quit the shell.
Now you can either use the existing client or install a different one like phpMyAdmin, or HeidiSQL. I suggest using the existing shell until you are very comfortable with the different SQL commands and what their results are.
To create databases use the mysqladmin command. But first you should get a user properly configured.