mysql資料庫內容的匯出!

2021-09-30 07:28:23 字數 605 閱讀 2397

上網查了下有說用mysql/bin>mysqldump -p 資料庫名稱》d:/***.txt ;//匯出該資料庫內的所有內容到d盤的***.txt檔案中,之後要輸入密碼。

但是我試了試,不行!

我這樣試了,結果行了:

d:/mysql5/bin>mysqldump -u使用者名稱 -p密碼

--no-create-db=true --no-create-info=true

--add-drop-table=false

--default-character-set="gbk"

--where="id<4287152 and id>0"

資料庫名 表名》d:/***.txt

//--where="id<4287152 and id>0"約束條件,不加也行

--no-create-db=true  表示不生成建立資料庫的語句

--add-drop-table=false  表示不生成drop表的語句

--default-character-set="gbk"  匯出資料的編碼為"gbk",很重要,如果是中文資料,尤其重要

--where="id<4287152 and id>0"  指定匯出資料的條件

mysql 的資料庫內容替換

ps 下面是轉過來的,用於記錄下,這個不是正則的初衷,只是用了regexp而已,正則的更靈活更方便 將comment表中的author url包含www.sohu.com的記錄,其中的sohu替換為sina,乙個語句搞定 update comment set author url replace a...

顯示資料庫內容

建立asp檔案後,include conn.asp檔案 然後就是 dim rs set rs server.createobject adodb.recordset rs.open select from 表名 cnn,1,1,adcmdtext rs就是記錄集。open後面是表名則最後引數為adc...

資料庫內容整理

寫在前面 mysql是最流行的關係型資料庫管理系統,在web應用方面mysql是最好的rdbms relational database management system 關聯式資料庫管理系統 應用軟體之一。mysql是乙個多使用者,多執行緒的sql資料庫伺服器,以客戶機 伺服器結構的實現,由乙個...