Skip to content

Instantly share code, notes, and snippets.

@dre3s
Last active January 12, 2016 13:44
Show Gist options
  • Select an option

  • Save dre3s/0b6fb11da05dd1f999d1 to your computer and use it in GitHub Desktop.

Select an option

Save dre3s/0b6fb11da05dd1f999d1 to your computer and use it in GitHub Desktop.
mysql.utils

#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';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment