1.建立資料庫oracledb
create database oracledb;
2.新增使用者
grant all on 資料庫名.*
to 使用者名稱@localhost identified by '密碼';
grant all on oracledb.* tousername@localhost
identified by 'password';
說明:
(1)grant all 賦予所有的許可權
(2)gamesp.* 資料庫 gamesp 中所有的表
(3)newuser 使用者名稱
(4)@localhost 在本地電腦上的 mysql server 伺服器
(5)identfified by 'password' 設定密碼
後記:1.刪除使用者
mysql>delete from user where user="***xx" and host="localhost";
mysql>flush privileges;
2.新增乙個遠端使用者,名為username密碼為password
grant all privileges on *.* tousername@"%" identified by 'password'
mysql新增和刪除使用者
6.3.2 新增使用者賬戶 有2種方法可以用來新增使用者賬戶 1 使用賬戶管理語句,例如 create user 和 grant 這種方式會使得mysql伺服器對底層的授權表做相應的修改 2 使用insert update delete 等語句直接操作授權表 前一種方法更加簡介 出錯更少 不鼓勵直接...
MySQL新增使用者 刪除使用者與授權
注意這個文件中有乙個錯誤 就是使用者建立之後還是無法登入,並且為使用者賦予許可權的時候會報錯如下 error 1133 42000 can t find any matching row in the user table 這是因為變更了,mysql.user 之後沒有進行許可權的變更。只要執行一下...
MySQL新增使用者 刪除使用者與授權
mysql中新增使用者,新建資料庫,使用者授權,刪除使用者,修改密碼 注意每行後邊都跟個 表示乙個命令語句結束 1.新建使用者 1.1 登入mysql mysql u root p 密碼 1.2 建立使用者 mysql insert into mysql.user host,user,passwor...