Skip to content

Instantly share code, notes, and snippets.

@horitaku1124
Last active January 16, 2023 06:06
Show Gist options
  • Save horitaku1124/53c23d6a459efcbd1e9a0f1805669dc6 to your computer and use it in GitHub Desktop.
Save horitaku1124/53c23d6a459efcbd1e9a0f1805669dc6 to your computer and use it in GitHub Desktop.
CREATE DATABASE dabase_name CHARACTER SET utf8mb4;

create user 'mysql_user'@'localhost' identified by 'mysql_user_password';

GRANT ALL PRIVILEGES ON dabase_name.* to mysql_user@localhost IDENTIFIED BY 'mysql_user_password';

MySQL8では IDENTIFIED BY は使えない

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment