mysql匯入匯出sql檔案
window下
1.匯出整個資料庫
mysqldump -u 使用者名稱 -p 資料庫名 > 匯出的檔名
mysqldump -u dbuser -p dbname > dbname.sql
2.匯出乙個表
mysqldump -u 使用者名稱 -p 資料庫名 表名》 匯出的檔名
mysqldump -u dbuser -p dbname users> dbname_users.sql
3.匯出乙個資料庫結構
mysqldump -u dbuser -p -d –add-drop-table dbname >d:/dbname_db.sql
-d 沒有資料 –add-drop-table 在每個create語句之前增加乙個drop table
4.匯入資料庫
常用source 命令
進入mysql資料庫控制台,如
mysql -u root -p
mysql>use 資料庫
然後使用source命令,後面引數為指令碼檔案(如這裡用到的.sql)
mysql>source d:/dbname.sql
匯入資料到資料庫
mysql -uroot -d資料庫名
匯入資料到資料庫中得某個表
mysql -uroot -d資料庫名 表名
d:\apmserv5.2.6\mysql5.1\bin>mysqldump -u root -p erp lightinthebox_tags > ligh
tinthebox.sql
linux下
一、匯出資料庫用mysqldump命令(注意mysql的安裝路徑,即此命令的路徑):
1、匯出資料和表結構:
mysqldump -u使用者名稱 -p密碼 資料庫名 > 資料庫名.sql
敲回車後會提示輸入密碼
2、只匯出表結構
mysqldump -u使用者名稱 -p密碼 -d 資料庫名 > 資料庫名.sql
注:/usr/local/mysql/bin/ —> mysql的data目錄
二、匯入資料庫
1、首先建空資料庫
mysql>create database abc;
2、匯入資料庫
方法一:
(1)選擇資料庫
mysql>use abc;
(2)設定資料庫編碼
mysql>set names utf8;
(3)匯入資料(注意sql檔案的路徑)
mysql>source /home/abc/abc.sql;
方法二:
mysql -u使用者名稱 -p密碼 資料庫名 < 資料庫名.sql
select buyer.id,buyer.buyer_no as 『客戶編碼』,buyer.name
as 『客戶名稱』,buyer.buyer_code as 『crm客戶**』,buyer.official_email as 『郵箱』,buyer.official_phone as 『**』,
(selectname
from erui_dict.country where bn =buyer.country_bn and deleted_flag=』n』 and lang=』zh』) as 『國家』,
buyer.country_bn as 『國家**』,
buyer.status
as 『審核狀態』,buyer.source as 『使用者**』,
buyer_agent.agent_id as 『市場經辦人id』,(selectname
from erui_sys.employee where id =buyer_agent.agent_id) as 『市場經辦人姓名』,
buyer.created_by as 『建立人id』,(selectname
from erui_sys.employee where id =buyer.created_by) as 『建立人』,
intent_product as 『意向產品』,purchase_amount as 『年採購額』,biz_scope as 『經營範圍』
from erui_buyer.buyer buyer
left join erui_buyer.buyer_agent buyer_agent on buyer.id=buyer_agent.buyer_id
where buyer.deleted_flag=』n』
group by buyer.id
order by buyer.id
國家同步地區=mysql 兩個關聯表如何更新其中乙個表的資料
update erui_buyer.buyer a,erui_operation.market_area_country b set a.area_bn=b.market_area_bn
where a.country_bn=b.country_bn and (a.area_bn is null or a.area_bn=」);
MYSQL匯入匯出 sql檔案
一.mysql的命令列模式的設定 桌面 我的電腦 屬性 環境變數 新建 path path mysql bin 其中path為mysql的安裝路徑。二.簡單的介紹一下命令列進入mysql的方法 1.c mysql h hostname u username p 按enter鍵,等待然後輸入密碼。這裡...
mysql匯入匯出sql檔案
一 從資料庫中匯出資料庫檔案 1 將資料庫mydb匯出到f mydb.sql 開啟開始 執行 輸入cmd 進入命令列模式 c documents and settings administrator f f mysqldump h localhost u root p mydb f mydb.sql...
MYSQL匯入匯出 sql檔案
一.mysql的命令列模式的設定 桌面 我的電腦 屬性 環境變數 新建 path path mysql bin 其中path為mysql的安裝路徑。二.簡單的介紹一下命令列進入mysql的方法 1.c mysql h hostname u username p 按enter鍵,等待然後輸入密碼。這裡...