我的mysql學習筆記
1.匯出資料庫
(1)進入mysql的安裝路徑中的"bin"檔案路徑,例如:我的是"%mysqlhome%\mysql server 5.5\bin";
(2)"mysqldump -u root -p 資料庫名 > 匯出檔名.sql",回車;
(3)此時會要求輸入資料庫的密碼,若無錯誤的話,不會有任何提示。此時,到bin資料夾下找到"匯出檔名.sql"即可。
2.sql檔案匯入資料庫
(1)將"匯入檔名.sql"檔案放到前面的bin資料夾下面;
(2)進入mysql的安裝路徑中的"bin"檔案路徑,例如:我的是"%mysqlhome%\mysql server 5.5\bin";
(3)"mysql -u 使用者名稱 -p",回車。然後按提示輸入你的資料庫密碼;
(4)選擇或者建立你想要匯入資料庫:create databse 資料庫名;
use 資料庫名;
(5)"source 匯入檔名.sql;",大功告成。
3.資料庫中的表匯出到csv檔案中
(1)進入並選擇表所在的資料庫;
(2)輸入:select * from 表名 into outfile '%path%' fields terminated by ',' optionally enclosed by '"' escaped by '"' lines terminated by '\n';
(3)回車後,看到"query ok ......「即為成功匯出。
4.csv檔案匯入資料庫
(1)建立相應的資料庫和資料表;
(2)sql語句:
load data infile '%path%\\data.csv'
into table table_name
fields terminated by ',' optionally enclosed by '"' escaped by '"'
lines terminated by '\n';
mysql學習筆記 51 mysql學習筆記
初學mysql時整理,隨時更新 資料操作 增 insert into 表名 字段列表 values 值列表 值列表 如果要插入的值列表包含所有字段並且順序一致,則可以省略字段列表。可同時插入多條資料記錄!replace 與 insert 完全一樣,可互換。insert into 表名 set 欄位名...
mysql學習筆記 51 Mysql 學習筆記
一.首先進入mysql mysql u root p新增使用者許可權設定 grant all privileges on to jerry localhost identified by aa1234567 只允許本機訪問 grant all privileges on to jerry 10.80...
mysql做筆記 mysql學習筆記
alter table 新增,修改,刪除表的列,約束等表的定義。檢視列 desc 表名 修改表名 alter table t book rename to bbb 新增列 alter table 表名 add column 列名 varchar 30 刪除列 alter table 表名 drop ...