天天看點

mysql基本操作

Mysql建立、删除使用者

MySql中添加使用者,建立資料庫,使用者授權,删除使用者,修改密碼(注意每行後邊都跟個;表示一個指令語句結束):

1.建立使用者

 登入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>登入成功

2.為使用者授權

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

 登入MYSQL(有ROOT權限),這裡以ROOT身份登入:

 首先為使用者建立一個資料庫(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';即可。

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>update mysql.user set password=password('新密碼') where User="test" and Host="localhost";

5.列出所有資料庫

 mysql>show database;

6.切換資料庫

 mysql>use '資料庫名';

7.列出所有表

 mysql>show tables;

8.顯示資料表結構

 mysql>describe 表名;

9.删除資料庫和資料表

 mysql>drop database 資料庫名;

 mysql>drop table 資料表名;

     本文轉自506554897 51CTO部落格,原文連結http://blog.51cto.com/506554897/1862602:,如需轉載請自行聯系原作者