MySQL中最常用的几个命令

在MySQL里面,如果你只是想新建一个User、一个Database。那么知道下面这几个命令就足够了:

登录MySQL: mysql -u root -p

添加数据库: create database xxxxx

添加并授权用户: grant all privileges on xxxxx.* to ‘newuser‘@‘localhost‘ identified by "password"

 

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注

Time limit is exhausted. Please reload CAPTCHA.