MySQL常用操作

來源:互聯網
上載者:User

標籤:mysql常用操作   source   電腦   系統   int   value   nbsp   主機   password   

1.匯入資料庫

1 use 資料庫;2 source 路徑/檔案名稱;

 

2.建立使用者,此處的"localhost",是指該使用者只能在本地登入,如果想遠程登入的話,將"localhost"改為"%",表示在任何一台電腦上都可以登入。也可以指定某台機器可以遠程登入。

1 mysql> insert into mysql.user(Host,User,Password) values("localhost","test",password("111111"));

 

3.設定使用者權限

 1 //@"%" 表示對所有非本地主機授權,不包括localhost 2  3 //對localhost授權:加上一句grant all privileges on testDB.* to test@localhost identified by ‘111111‘;即可。 4  5 //testDB的所有許可權 6 mysql>grant all privileges on testDB.* to test@localhost identified by ‘111111‘; 7  8 //testDB的部分許可權 9 mysql>grant select,update on testDB.* to test@localhost identified by ‘111111‘;10 11 //test使用者對所有資料庫都有select,delete,update,create,drop 許可權。12 mysql>grant select,delete,update,create,drop on *.* to [email protected]"%" identified by "111111";13 14 //重新整理系統許可權表15 mysql>flush privileges;

 

4.修改指定使用者密碼

1 mysql>update mysql.user set password=password(‘新密碼‘) where User="test" and Host="localhost";2 3  mysql>flush privileges;

 

5.

 

MySQL常用操作

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.