收藏 mysql手工匯入和匯出資料庫

2021-08-31 10:20:41 字數 601 閱讀 1281

mysql資料匯入與匯出

在本機寫好**了

要轉移到其他計算機上去了

下面講一下如何進行mysql資料匯入與匯出

執行--cmd--

cd c:\program files\mysql\mysql server 5.0\bin---mysqldump.exe -u root(使用者名稱) -p db_schoolmaster(資料庫名)>db_schoolmaster.sql(要匯出的資料檔案)

enter password: ***********

好了,發現我們要的db_schoolmaster.sql在c:\program files\mysql\mysql server 5.0\bin裡了,帶著走吧

到新的電腦前

新建乙個資料庫

create database db_schoolmaster;

選中資料庫

use db_schoolmaster;

最後該匯入資料了

source d:/db_schoolmaster.sql

好了,看看有東西了嗎?

show tables;

然後再來乙個select

應該會成功

mysql 匯入匯出表 mysql 匯出,匯入資料

windows下匯出mysql資料庫中的資料 1.mysql桌面管理工具,使用 select into outfile 語句匯出資料 1.1 進入管理工具後,選中要匯出的資料庫,右擊,選擇命令列頁面進入 1.2 輸入select from 表名into outfile 檔名 select from ...

mysql匯出的資料 mysql匯出匯入資料

使用sql語句匯出資料 匯出時如果不寫絕對路徑,會提示the mysql server is running with the secure file priv option so it cannot execute this statement。使用 show variables like sec...

mysql匯入和匯出

進入mysql mysql uroot p 檢視所有資料庫 show databases 刪除資料庫 drop database testmysql 選擇資料庫 use testmysql2 建立表table create table persontable personid int,name va...