DB Notes For Busy Developer
Create Database
CREATE DATABASE db_name_here;
Create User
Mysql
CREATE USER 'username'@'localhost' IDENTIFIED BY 'password';
Postgresql
CREATE USER 'username' WITH PASSWORD 'password';
Postges Database create with existing user
CREATE DATABASE db_nam...
riajul.hashnode.dev1 min read