Skip to content
A bird sitting on a nest of eggs. GitHub Twitter

Basic knowledge I needed about MySQL when creating CRUD app with Express

MySQL Installation on Mac M1

arch -arm64 brew install mysql

Start MySQL

mysql -u root -p
>

↑initial pass is empty since user is root user

Create new user

CREATE USER 'new_user'@'localhost' IDENTIFIED BY 'new_password';
GRANT ALL PRIVILEGES ON your_database_name.* TO 'new_user'@'localhost';