Linux环境下mysql建库命令
1、登录mysql
mysql -u root -ptest
2、创建数据库
create database myfirst;
3、为新用户分配该数据库的权限
grant all privileges on `myfirst`.* to ‘testuser’@’%’ identified by ‘testuser123456’;
-——————— 我是愉快的分割线 —————————-
myfirst — 库名
testuser — 访问myfirst的用户名
testuser123456 — 访问myfirst的密码
还没有评论,来说两句吧...