#Mysql Commands
###Accessing the mysql database
$ mysql -u root -p###Creating and using the database
on console, mysql>
CREATE DATABASE meu_banco;
USE meu_banco;###add user and password to access database
GRANT ALL PRIVILEGES ON database_name.*
TO 'admin'@'localhost'
IDENTIFIED BY '123456';