命令操作Mysql資料庫

2022-03-27 19:35:11 字數 3104 閱讀 9131

mysql中新增使用者,新建資料庫,使用者授權,刪除使用者,修改密碼(注意每行後邊都跟個;表示乙個命令語句結束):

1.新建使用者

1.1 登入mysql:

@>mysql -u root -p

@>密碼

1.2 建立使用者:

//登入mysql後建立新使用者,@後面的表示可以在**登入,%可以在任意地方登入,用不同的使用者登入資料庫,表不一樣

//create user 'srabc'@'locallost' identified by 'usrabc';  

用下面這種方法也可以建立使用者

mysql> insert into mysql.user(host,user,password) values("localhost","test",password("1234"));

這樣就建立了乙個名為:test 密碼為:1234 的使用者。

注意:此處的"localhost",是指該使用者只能在本地登入,不能在另外一台機器上遠端登入。如果想遠端登入的話,將"localhost"改為"%",表示在任何一台電腦上都可以登入。也可以指定某台機器可以遠端登入。但增加的使用者是十分危險的,你想如某個人知道test1的密碼,那麼他就可以在internet上的任何一台電腦上登入你的mysql資料庫並對你的資料可以為所欲為了,解決辦法見例第二種: 

如果你不想srabc有密碼,可以再打乙個命令將密碼消掉。   

mysql> grant select,insert,update,delete on book.* to srabc@localhost identified by "";

1.3 然後登入一下:

mysql>exit;

@>mysql -u test -p

@>輸入密碼

mysql>登入成功

2.為使用者授權

授權格式:grant 許可權 on 資料庫.* to 使用者名稱@登入主機 identified by "密碼"; 

2.1 登入mysql(有root許可權),這裡以root身份登入:

@>mysql -u root -p

@>密碼

2.2 首先為使用者建立乙個資料庫(testdb):

mysql>create database testdb;

2.3 授權test使用者擁有testdb資料庫的所有許可權(某個資料庫的所有許可權):

mysql>grant all privileges on testdb.* to test@localhost identified by '1234';

mysql>flush privileges;//重新整理系統許可權表

格式:grant 許可權 on 資料庫.* to 使用者名稱@登入主機 identified by "密碼"; 

2.4 如果想指定部分許可權給一使用者,可以這樣來寫:

mysql>grant select,insert,update, on testdb.* to test@localhost identified by '1234';

mysql>flush privileges; //重新整理系統許可權表

2.5 授權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';即可。

3.刪除使用者

@>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; 

4.修改指定使用者密碼

@>mysql -u root -p

@>密碼

mysql>update mysql.user set password=password('新密碼') where user="test" and host="localhost";

mysql>flush privileges;

5.列出所有資料庫

mysql>show database;

6.切換資料庫

mysql>use '資料庫名';

7.列出所有表

mysql>show tables;

8.顯示資料表結構

mysql>describe 表名;

9.刪除資料庫和資料表

mysql>drop database 資料庫名;

mysql>drop table 資料表名;

MySQL 資料庫操作命令

mysql 資料庫操作命令行 1 檢視資料庫 show databases 2 建立資料庫 create database if not exists 資料庫名 例 create database aa 例 create database if not exists ab 3 刪除資料庫 謹慎操作無...

CMD命令操作MySql資料庫

第一 mysql服務的啟動和停止 1.net stop mysql 2.net start mysql 第二 登入 mysql u使用者名稱 h主機名或者ip位址 p密碼 例如 mysql uroot 此為訪問本地根目錄,沒有密碼 說明 使用者名稱是你登入的使用者,主機名或者ip位址為可選項,如果是...

資料庫Mysql基本操作命令

一 mysql服務的啟動和停止 後面沒有分號 net stop mysql net start mysql 二 運算元據庫 有分號 1 顯示資料庫列表 show databases 2 顯示庫中的資料表 use 庫名 show tables 3 查詢表中內容 select from 表名 4 清空表...