mysql建立使用者,使用者授權,刪除使用者,修改密碼

來源:互聯網
上載者:User

mysql有幾個圖形管理軟體很好用,比如mysql-front ,phpadmin等等,簡單易用,這裡就不做介紹了。另外eclipse有個資料庫管理的外掛程式叫,可以對各種常用的資料庫進行圖形管理,也很好用。

下面步入正題,介紹下sql常用操作:

建立庫表和查詢插入刪除記錄的操作很熟悉,就不作介紹了。這裡主要說一下對使用者和密碼的操作,這些操作也很重要,尤其在剛開始使用資料庫時很有用。

登入MYSQL
>mysql -u root -p
>密碼

建立使用者
mysql> mysql> insert into mysql.user(Host,User,Password,ssl_cipher,x509_issuer,x509_sub
ject) values("localhost","fred",password("love"),'','','');

建立後的使用者名稱為:fred  密碼為:love

建立資料庫(test)
mysql>create database test;
將test資料庫的所有許可權授權給使用者fred
>grant all privileges on test.* to fred@localhost identified by 'love';
重新整理系統許可權表
mysql>flush privileges;

如果想指定部分許可權給一使用者,可以這樣來寫:
mysql>grant select,update on phplampDB.* to fred@localhost identified by 'love';
重新整理系統許可權表。
mysql>flush privileges;

修改指定使用者密碼。
>mysql -u root -p
>密碼
mysql>update mysql.user set password=password('新密碼') where User="fred" and Host="localhost";
mysql>flush privileges;

刪除使用者。
>mysql -u root -p
>密碼
mysql>DELETE FROM user WHERE User="fred" and Host="localhost";
mysql>flush privileges;
刪除使用者的資料庫
mysql>drop database test;

其它一些有用的操作:

列出所有資料庫

mysql>show database;

切換資料庫

mysql>use '資料庫名';

列出所有表

mysql>show tables;

顯示資料表結構

mysql>describe 表名;

刪除資料庫和資料表

mysql>drop database 資料庫名;
mysql>drop table 資料表名;

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.