新增檢視使用者

2021-09-01 17:33:18 字數 577 閱讀 6730

關於查詢使用者名稱:select * from mysql.user \g;

mysql新增使用者方法

建立資料庫gamesp

create database gamesp;

新增使用者

grant all on 資料庫名.* to 使用者名稱@localhost identified by '密碼';

grant all on gamesp.* to newuser@localhost identified by 'password';

新增乙個遠端使用者,名為username密碼為password

grant all privileges on *.* to username@"%" identified by 'password'

說明:

(1)grant all 賦予所有的許可權

(2)gamesp.* 資料庫 gamesp 中所有的表

(3)newuser 使用者名稱

(4)@localhost 在本地電腦上的 mysql server 伺服器

(5)identfified by 'password' 設定密碼

新增檢視使用者

關於查詢使用者名稱 select from mysql.user g mysql新增使用者方法 建立資料庫gamesp create database gamesp 新增使用者 grant all on 資料庫名.to 使用者名稱 localhost identified by 密碼 grant a...

Linux使用者組新增檢視

將乙個使用者新增到使用者組中,千萬不能直接用 usermod g groupa 這樣做會使你離開其他使用者組,僅僅做為這個使用者組 groupa 的成員。應該用 加上 a 選項 usermod a g groupa user fc4 usermod g groupa,groupb,groupc us...

新增 檢視 刪除外來鍵

新增外來鍵 alter table sitecodes drop foreign key fk sitecodes 設定外來鍵 alter table 需要建立外來鍵的表 add constraint 外鍵名字 foreign key references 外來鍵表 外來鍵字段 alter tabl...