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 資料表名;