- 相關(guān)推薦
mysql導(dǎo)入導(dǎo)出數(shù)據(jù)庫(kù)以及函數(shù)存儲(chǔ)過(guò)程的介紹
mysql常用導(dǎo)出數(shù)據(jù)命令:
1.mysql導(dǎo)出整個(gè)數(shù)據(jù)庫(kù)
mysqldump -hhostname -uusername -ppassword databasename > backupfile.sql
mysqldump -hlocalhost -uroot hqgr> hqgr.sql (如果root用戶沒(méi)用密碼可以不寫(xiě)-p,當(dāng)然導(dǎo)出的sql文件你可以制定一個(gè)路徑,未指定則存放在mysql的bin目錄下)
2.mysql導(dǎo)出數(shù)據(jù)庫(kù)一個(gè)表
mysqldump -hhostname -uusername -ppassword database tablename> 導(dǎo)出的文件名
mysqldump -hlocalhost -uroot hqgr t_ug_user> user.sql
3.mysql導(dǎo)出一個(gè)數(shù)據(jù)庫(kù)結(jié)構(gòu)
mysqldump -hhostname -uusername -ppassword -d --add-drop-table databasename>d:hqgrstructure.sql
-d 沒(méi)有數(shù)據(jù) --add-drop-table 在每個(gè)create語(yǔ)句之前增加一個(gè)
4.如果需要導(dǎo)出mysql里面的函數(shù)或者存儲(chǔ)過(guò)程
mysqldump -hhostname -uusername -ppassword -ntd -R databasename > backupflie.sql
mysqldump -hlocalhost -uroot -ntd -R hqgr > hqgr.sql
其中的 -ntd 是表示導(dǎo)出存儲(chǔ)過(guò)程;-R是表示導(dǎo)出函數(shù)
mysql常用導(dǎo)入數(shù)據(jù)的命令:
1.mysql命令
mysql -hhostname -uusername - ppassword databasename < backupfile.sql
2.source命令
mysql>source backupfile.sql
【mysql導(dǎo)入導(dǎo)出數(shù)據(jù)庫(kù)以及函數(shù)存儲(chǔ)過(guò)程的介紹】相關(guān)文章:
PHP+mysql的網(wǎng)站作品在面試的時(shí)候如何帶去?導(dǎo)出數(shù)據(jù)庫(kù)?07-13
MySQL數(shù)據(jù)庫(kù)所支持的操作系統(tǒng)介紹06-28
MySQL數(shù)據(jù)庫(kù)如何備份與恢復(fù)06-28
MySQL數(shù)據(jù)庫(kù)備份守則和方法04-22
如何實(shí)現(xiàn)MySQL數(shù)據(jù)庫(kù)的備份與恢復(fù)06-28
用MySQL來(lái)創(chuàng)建數(shù)據(jù)庫(kù)和數(shù)據(jù)庫(kù)表06-28
如何用crontab系統(tǒng)每天定時(shí)備份MySQL數(shù)據(jù)庫(kù)06-28
關(guān)于QQ好友關(guān)系數(shù)據(jù)庫(kù)存儲(chǔ)方式?07-13
如何實(shí)現(xiàn)MySQL數(shù)據(jù)庫(kù)的備份與恢復(fù)電腦知識(shí)06-28