How To Create Database In Mysql And (grant all privileges)

0
Create Database :
For Example Make Database Named (Sarhan)
====================
create database Sarhan;
====================

Give grant all privileges :
You Can Change Any Thing Between (::::)
=====================================================================
grant all privileges on You Database Name.* to 'root'@'localhost' identified by "any_password";
=====================================================================