-- 建立資料庫
create database basename;
-- 建立使用者
create user 'username' @ '訪問限制' identified by 'password';
-- 授權使用者
grant all privileges on 資料庫名稱.表名稱 to 'username'@'訪問限制';
-- 重新整理使用者許可權
flush privileges;
---修改使用者密碼
alter user 'root'@'localhost' identified by 'newpassword';
demo 示範:
create user 'honeyjean'@'localhost' identified by 'passwordstring';
grant all privileges on zhoulujun.* to 'honeyjean'@'localhost';
flush privileges;
記住:@兩邊不要有空格
mysql新增使用者以及新增資料庫和授權
mysql 中新增使用者,新建 資料庫,使用者授權 1.新建使用者 mysql u root p 密碼 mysql insert into mysql.user host,user,password values localhost healthyuser password admin 這樣就建立了...
linux 新增資料庫使用者
第一步 進入mysql mysql uroot msyql p 回車輸入root使用者的密碼 安裝mysql時自己指定的 建立乙個test使用者,密碼位test,代表聯網中的所有使用者都能用test使用者名稱訪問資料庫 所有資料庫中的所有表 grant all on to test identifi...
mysql插入使用者資訊 使用者資訊新增資料庫
1 1.建立乙個資料庫create database user,並進行settings.py資料庫部分的配置2 databases 11 12 2.建立模型類,即在models.py裡寫模型類13 14 from django.db import models15 16 class user mod...