明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

MySQL常用的數(shù)據(jù)庫(kù)管理命令

[摘要]MySQL數(shù)據(jù)庫(kù)是一種開放源代碼的關(guān)系型數(shù)據(jù)庫(kù)管理系統(tǒng),MySQL數(shù)據(jù)庫(kù)系統(tǒng)使用最常用的數(shù)據(jù)庫(kù)管理語言--結(jié)構(gòu)化查詢語言(SQL)進(jìn)行數(shù)據(jù)庫(kù)管理,MySQL數(shù)據(jù)庫(kù)管理有它自己獨(dú)特的使用命令,下面為您介紹MySQL數(shù)據(jù)庫(kù)管理常用命令。MySQL數(shù)據(jù)庫(kù)的管理對(duì)數(shù)據(jù)庫(kù)來說是至關(guān)重要的一個(gè)環(huán)節(jié),要想懂得M...
MySQL數(shù)據(jù)庫(kù)是一種開放源代碼的關(guān)系型數(shù)據(jù)庫(kù)管理系統(tǒng),MySQL數(shù)據(jù)庫(kù)系統(tǒng)使用最常用的數(shù)據(jù)庫(kù)管理語言--結(jié)構(gòu)化查詢語言(SQL)進(jìn)行數(shù)據(jù)庫(kù)管理,MySQL數(shù)據(jù)庫(kù)管理有它自己獨(dú)特的使用命令,下面為您介紹MySQL數(shù)據(jù)庫(kù)管理常用命令。

MySQL數(shù)據(jù)庫(kù)的管理對(duì)數(shù)據(jù)庫(kù)來說是至關(guān)重要的一個(gè)環(huán)節(jié),要想懂得MySQL數(shù)據(jù)庫(kù)的管理必須從基礎(chǔ)做起,只有先知道了數(shù)據(jù)庫(kù)管理時(shí)使用的命令,實(shí)際操作起來就容易很多。下面就是MySQL數(shù)據(jù)庫(kù)管理常用命令:

  1. 安裝利用RPM包安裝Mysql,設(shè)置TCP 3306端口的iptables。

  2. root密碼管理設(shè)置root用戶的密碼mysqladmin -uroot password 'password'。

  3. 修改root用戶的密碼mysqladmin -uroot -p password 'password'。

  4. 數(shù)據(jù)庫(kù),表管理進(jìn)入mysqlmysql -h hostname -uroot -p。

  5. 創(chuàng)建數(shù)據(jù)庫(kù)mysql> create database location。

  6. 導(dǎo)入數(shù)據(jù)結(jié)構(gòu)mysql -uroot -p location <./location.sql。

  7. 查看數(shù)據(jù)庫(kù)mysql> show databases;

  8. 進(jìn)入某個(gè)庫(kù)mysql> use location;

  9. 查看表信息mysql> show tables;

  10. 查看表結(jié)構(gòu)mysql> desc Contact;

  11. 改表名mysql> rename table Contact to Contact_new。

  12. 刪除庫(kù)mysql> drop database location。

  13. 刪除表mysql> drop table Contact。

  14. 授權(quán)部分建立用戶并授權(quán)mysql> grant all on location.* to gk1020@'10.1.11.71' identified by 'gk1020'。

  15. 取消授權(quán)mysql> revoke all on location.* from gk1020@'10.1.11.71'。

  16. 刷新權(quán)限mysql> flush privileges。

  17. 操作語句查詢mysql> select * from Contact。

  18. mysql> select count(*) from Contact。

  19. 修改mysql> update Contact set RegTime=‘2008-01-01 00:00:00' where id=1。

  20. mysql> update Contact set RegTime=‘2008-01-01 00:00:00',CID=1 where id=1。

  21. 插入mysql> insert into Contact values('',''…)

  22. mysql> insert into Contact(ID,CID,Contact) values('',''…)

  23. 刪除mysql> delete from Contact where id=1。

  24. 導(dǎo)出導(dǎo)出數(shù)據(jù)庫(kù)locationmysqldump -uroot -p location >./location.sql。

  25. 導(dǎo)出某個(gè)表mysqldump -uroot -p --database location --table Contact >./contact.sql。

  26. 導(dǎo)出數(shù)據(jù)庫(kù)location的數(shù)據(jù)結(jié)構(gòu)mysqldump -d -uroot -p location >./location.sql。

  27. 復(fù)制表復(fù)制表Contact為Contact_bakmysql> create table Contact_bak as select * from Contact。

  28. 復(fù)制表Contact的結(jié)構(gòu)mysql> create table Contact_bak as select * from Contact where 1=2。

  29. 查看正在執(zhí)行的任務(wù)mysql> show processlist。

特別說明:

location為庫(kù)名,Contact為表名

大家就去理解這些MySQL數(shù)據(jù)庫(kù)管理常用命令,并在實(shí)際操作中應(yīng)用進(jìn)去,熟練掌握,那么MySQL數(shù)據(jù)庫(kù)管理常用命令就會(huì)易如反掌。

以上就是MySQL常用的數(shù)據(jù)庫(kù)管理命令的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注php中文網(wǎng)其它相關(guān)文章!


學(xué)習(xí)教程快速掌握從入門到精通的SQL知識(shí)。