mysql中新增使用者,新建資料庫,使用者授權,刪除使用者,修改密碼(注意每行後邊都跟個;表示乙個命令語句結束):
登入mysql:
@>mysql -u root -p
@>密碼
建立使用者:
mysql> insert into mysql.user(host,user,password) values("localhost","test",password("1234"));
這樣就建立了乙個名為:test 密碼為:1234 的使用者。
注意:此處的"localhost",是指該使用者只能在本地登入,不能在另外一台機器上遠端登入。如果想遠端登入的話,將"localhost"改為"%",表示在任何一台電腦上都可以登入。也可以指定某台機器可以遠端登入。
然後登入一下:
mysql>exit;
@>mysql -u test -p
@>輸入密碼
mysql>登入成功
授權格式:grant 許可權 on 資料庫.* to 使用者名稱@登入主機 identified by "密碼";
登入mysql(有root許可權),這裡以root身份登入:
@>mysql -u root -p
@>密碼
首先為使用者建立乙個資料庫(testdb):
mysql>create database testdb;
授權test使用者擁有testdb資料庫的所有許可權(某個資料庫的所有許可權):
mysql>grant all privileges on testdb.* to test@localhost identified by '1234';
mysql>flush privileges;//重新整理系統許可權表
格式:grant 許可權 on 資料庫.* to 使用者名稱@登入主機 identified by "密碼";
如果想指定部分許可權給一使用者,可以這樣來寫:
mysql>grant select,update on testdb.* to test@localhost identified by '1234';
mysql>flush privileges; //重新整理系統許可權表
授權test使用者擁有所有資料庫的某些許可權:
mysql>grant select,delete,update,create,drop on . to test@"%" identified by "1234";
test使用者對所有資料庫都有select,delete,update,create,drop 許可權。
@"%" 表示對所有非本地主機授權,不包括localhost。(localhost位址設為127.0.0.1,如果設為真實的本地位址,不知道是否可以,沒有驗證。)
對localhost授權:加上一句grant all privileges on testdb.* to test@localhost identified by '1234';即可。
@>mysql -u root -p
@>密碼
mysql>delete from user where user='test' and host='localhost';
mysql>flush privileges;
mysql>drop database testdb; //刪除使用者的資料庫
刪除賬戶及許可權:>drop user 使用者名稱@'%';
>drop user 使用者名稱@ localhost;
@>mysql -u root -p
@>密碼
mysql>update mysql.user set password=password('新密碼') where user="test" and host="localhost";
mysql>flush privileges;
mysql>show database;
mysql>use '資料庫名';
mysql>show tables;
mysql>describe 表名;
mysql>drop database 資料庫名;
mysql>drop table 資料表名;
MySQL 資料庫常用命令
1 mysql常用命令 create database name 建立資料庫 use databasename 選擇資料庫 drop database name 直接刪除資料庫,不提醒 show tables 顯示表 describe tablename 表的詳細描述 select 中加上disti...
MySQL 資料庫常用命令
1 mysql常用命令 create database name 建立資料庫 use databasename 選擇資料庫 drop database name 直接刪除資料庫,不提醒 show tables 顯示表 describe tablename 表的詳細描述 select 中加上disti...
MySQL資料庫常用命令
連線命令 mysql h 主機位址 u 使用者名稱 p 使用者密碼 建立資料庫 create database 庫名 顯示所有資料庫 show databases 開啟資料庫 use 庫名 建立資料表 create table 表名 欄位名 字段型別 字段引數 顯示資料表字段 desc 表名 當前庫...