這是問題所在.
首先,我在mysql中建立了乙個資料庫
create table users (user text, pass text, id text, regdate text, email text, rank text);
我現在有這個資料庫
| user | pass | id | regdate | email | rank |
我使用匯入了乙個csv檔案(users.csv)(utf-8,plaintext)
load data local infile 'users.csv' into table users fields terminated by ',' enclosed by '"' lines terminated by '\n';
該檔案的內容是
arinerron,asdfasdf,usr0000001,92082015,arinesaugmail,owner
looy,asdfasdf,usr0000002,92082015,tjesaugmail,user
mooncat39,marsisawesome,usr0000003,92082015,harveyfamilygmail,owner
goldy,foxythepirate777,usr0000004,92082015,goldyftwgmail,user
reid,reidyreid,usr0000005,92082015,reidgmail,moderator
bo,bobobobo,usr0000006,92082015,bobogmail,moderator
它的回應是
query ok, 6 rows affected (0.00 sec)
records: 6 deleted: 0 skipped: 0 warnings: 0
我跑了命令
select * from users
我得到了這個回應
| user | pass | id | regdate | email | rank |
|erron | asdfasdf | usr0000001 | 92082015 | arinesaugmail | owner
| | asdfasdf | usr0000002 | 92082015 | tjesaugmail | user
|cat39 | marsisawesome | usr0000003 | 92082015 | harveyfamilygmail | owner
| | foxythepirate777 | usr0000004 | 92082015 | goldyftwgmail | user
|reid | reidyreid | usr0000005 | 92082015 | reidgmail | moderator
| bo | bobobobo | usr0000006 | 92082015 | bobogmail | moderator |
這有什麼問題?為什麼格式不正確? rank列也搞砸了
我一遍又一遍地重複這些步驟但沒有成功.我真的需要盡快解決這個問題.非常感謝!
mac安裝mysql6 在Mac上安裝MySQL
安裝 1 開啟mysql官網 選擇downloads下面的mysql community gpl downloads 配置環境變數 vim bash profile export path path usr local mysql bin export path path usr local mys...
Mac設定 mysql密碼
1 檢視mysql路徑 2 brew 啟動mysql brew services start mysql3 mysql的應用於mac終端執行 4 配置mysql及使用方法 啟動mysql mysql.server start 5 設定密碼 第一次直接進入,沒密碼 mysql uroot p 進入my...
Mac設定Mysql開機啟動
mac和linux略有不同,有的功能封閉起來了。mac實現自啟動,可以用 launchctl功能來實現,launchctl實際上是寫 plist檔案,和linux中的crontab功能一樣。然後將建立的檔案放在 library launchdaemons資料夾。1.建立plist檔案 sudo to...