Skip to content

Instantly share code, notes, and snippets.

@uonr
Created July 13, 2019 10:17
Show Gist options
  • Save uonr/e051ae3eeb74b1871421612423c716d4 to your computer and use it in GitHub Desktop.
Save uonr/e051ae3eeb74b1871421612423c716d4 to your computer and use it in GitHub Desktop.
SQL 片段
CREATE DATABASE mydb CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'localhost';
FLUSH PRIVILEGES;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment