您好,登錄后才能下訂單哦!
本文實(shí)例講述了mysql數(shù)據(jù)庫(kù)創(chuàng)建賬號(hào)、授權(quán)、數(shù)據(jù)導(dǎo)出、導(dǎo)入操作。分享給大家供大家參考,具體如下:
1、賬號(hào)創(chuàng)建及授權(quán)
grant all privileges on *.* to 'yangxin'@'%' identified by 'yangxin123456' with grant option;
2、查看用戶權(quán)限
show grants for root;
3、回收權(quán)限
revoke create on *.* from 'yangxin';
4、刪除用戶
drop user test;
5、修改密碼
1> 更新mysql.user表
# mysql5.7之前 update mysql.user set password=password('123456') where user='root'; # mysql5.7之后 update mysql.user set authentication_string=password('123456') where user='root';
2> 用set password命令
語(yǔ)法:
set password for ‘用戶名'@'登錄地址'=password(‘密碼')
3> mysqladmin
語(yǔ)法:mysqladmin -u用戶名 -p舊的密碼 password 新密碼
記得刷新權(quán)限:
flush privileges;
數(shù)據(jù)導(dǎo)出:
1.導(dǎo)出結(jié)構(gòu)不導(dǎo)出數(shù)據(jù)
mysqldump -d 數(shù)據(jù)庫(kù)名 -uroot -p > xxx.sql
2.導(dǎo)出數(shù)據(jù)不導(dǎo)出結(jié)構(gòu)
mysqldump -t 數(shù)據(jù)庫(kù)名 -uroot -p > xxx.sql
3.導(dǎo)出數(shù)據(jù)和表結(jié)構(gòu)
mysqldump 數(shù)據(jù)庫(kù)名 -uroot -p > xxx.sql
4.導(dǎo)出特定表的結(jié)構(gòu)
mysqldump -uroot -p -B數(shù)據(jù)庫(kù)名 --table 表名 > xxx.sql #mysqldump [OPTIONS] database [tables]
導(dǎo)入數(shù)據(jù):
mysql -uroot -p 數(shù)據(jù)庫(kù)名 < 文件名
or:
然后選擇被導(dǎo)入的數(shù)據(jù)庫(kù):
#use 數(shù)據(jù)庫(kù); #source /tmp/xxx.sql
更多關(guān)于MySQL相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《MySQL索引操作技巧匯總》、《MySQL常用函數(shù)大匯總》、《MySQL日志操作技巧大全》、《MySQL事務(wù)操作技巧匯總》、《MySQL存儲(chǔ)過(guò)程技巧大全》及《MySQL數(shù)據(jù)庫(kù)鎖相關(guān)技巧匯總》
希望本文所述對(duì)大家MySQL數(shù)據(jù)庫(kù)計(jì)有所幫助。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。