So you followed the MySQL 5 installation guide and have MySQL installed and ready to go. The next step will be to create a user and database so you can start using MySQL, and in this guide we'll show you how the basics of how to create a database on your Windows based system. There are many ways to do this as there are a lot of support tools out there for MySQL. In this guide though we'll stick to the basics and show you how to add a database using the MySQL command line client.
The MySQL command line client provides you with a means of interacting with your MySQL server from the command line (duh!), and is installed as a part of the MySQL Server installation process. GUI clients tend to be favoured these days, but it is important to become familiar with the MySQL command line client syntax as it is very useful for automation of important tasks such as backups (not covered in this guide).
That is it, you now have a database using all the server default values ready to use. If you wish to create the database using values other than the default, our would like to read about additional options then I suggest you have a read of the CREATE DATABASE syntax documentation on the MySQL site.