MySQL常用的數(shù)據(jù)庫(kù)管理命令
發(fā)表時(shí)間:2023-08-24 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]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ù)管理常用命令:
安裝利用RPM包安裝Mysql,設(shè)置TCP 3306端口的iptables。
root密碼管理設(shè)置root用戶的密碼mysqladmin -uroot password 'password'。
修改root用戶的密碼mysqladmin -uroot -p password 'password'。
數(shù)據(jù)庫(kù),表管理進(jìn)入mysqlmysql -h hostname -uroot -p。
創(chuàng)建數(shù)據(jù)庫(kù)mysql> create database location。
導(dǎo)入數(shù)據(jù)結(jié)構(gòu)mysql -uroot -p location <./location.sql。
查看數(shù)據(jù)庫(kù)mysql> show databases;
進(jìn)入某個(gè)庫(kù)mysql> use location;
查看表信息mysql> show tables;
查看表結(jié)構(gòu)mysql> desc Contact;
改表名mysql> rename table Contact to Contact_new。
刪除庫(kù)mysql> drop database location。
刪除表mysql> drop table Contact。
授權(quán)部分建立用戶并授權(quán)mysql> grant all on location.* to gk1020@'10.1.11.71' identified by 'gk1020'。
取消授權(quán)mysql> revoke all on location.* from gk1020@'10.1.11.71'。
刷新權(quán)限mysql> flush privileges。
操作語句查詢mysql> select * from Contact。
mysql> select count(*) from Contact。
修改mysql> update Contact set RegTime=‘2008-01-01 00:00:00' where id=1。
mysql> update Contact set RegTime=‘2008-01-01 00:00:00',CID=1 where id=1。
插入mysql> insert into Contact values('',''…)
mysql> insert into Contact(ID,CID,Contact) values('',''…)
刪除mysql> delete from Contact where id=1。
導(dǎo)出導(dǎo)出數(shù)據(jù)庫(kù)locationmysqldump -uroot -p location >./location.sql。
導(dǎo)出某個(gè)表mysqldump -uroot -p --database location --table Contact >./contact.sql。
導(dǎo)出數(shù)據(jù)庫(kù)location的數(shù)據(jù)結(jié)構(gòu)mysqldump -d -uroot -p location >./location.sql。
復(fù)制表復(fù)制表Contact為Contact_bakmysql> create table Contact_bak as select * from Contact。
復(fù)制表Contact的結(jié)構(gòu)mysql> create table Contact_bak as select * from Contact where 1=2。
查看正在執(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í)。