Skip to content

Instantly share code, notes, and snippets.

View bussyjd's full-sized avatar
💭
🛠️ Buidl

JeanDaniel Bussy bussyjd

💭
🛠️ Buidl
View GitHub Profile
@yuki24
yuki24 / create_db.sql
Created September 15, 2011 08:40
Useful Commands and SQLs for MySQL and Postgres
create database db_name;
GRANT ALL ON db_name.* TO db_name@localhost IDENTIFIED BY 'pass';
FLUSH PRIVILEGES;