mysql常用操作

來源:互聯網
上載者:User

標籤:io   os   sp   資料   div   on   代碼   bs   as   

1. 新增使用者

代碼如下:
mysql>insert into mysql.user(Host,User,Password) values("localhost","lionbule",password("hello1234"));
mysql>flush privileges;

2. 修改使用者密碼

代碼如下:
mysql>update mysql.user set password=password(‘new password‘) where User="lionbule" and Host="localhost";
mysql>flush privileges;

3. 刪除使用者

代碼如下:
mysql>DELETE FROM user WHERE User="lionbule" and Host="localhost";
mysql>flush privileges;

4. 許可權分配

    4.1. grant用法
           grant 許可權 on 資料庫.* to 使用者名稱@‘登入主機‘ identified by ‘密碼‘

代碼如下:
許可權:
    常用總結, ALL/ALTER/CREATE/DROP/SELECT/UPDATE/DELETE
資料庫:
     *.*                    表示所有庫的所有表
     test.*                表示test庫的所有表
     test.test_table  表示test庫的test_table表    
使用者名稱:
     mysql賬戶名
登陸主機:
     允許登陸mysql server的用戶端ip
     ‘%‘表示所有ip
     ‘localhost‘ 表示本機
     ‘192.168.10.2‘ 特定IP
密碼:
      賬戶對應的登陸密碼

4.2 例子

代碼如下:
mysql>grant all  on test.* to [email protected]‘%‘ identified by ‘hello1234‘;
mysql>flush privileges;

新增密碼為‘hello234‘的使用者lionbule對test庫擁有所有操作許可權,並不限制lionbule使用者的登陸IP。    

4.3 注意事項

grant 會覆蓋使用者的部分資訊,跟insert 、update執行功能一樣.

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.