Skip to content

Instantly share code, notes, and snippets.

@chensoren
Created March 7, 2014 12:36
Show Gist options
  • Save chensoren/9410682 to your computer and use it in GitHub Desktop.
Save chensoren/9410682 to your computer and use it in GitHub Desktop.
mysql 命令

创建用户

CREATE USER 'usuario'@'localhost' IDENTIFIED BY 'contraseña';

创建数据库

CREATE DATABASE mydatabase CHARACTER SET utf8

授权

GRANT ALL ON concerts.* TO 'usuario'@'localhost';

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