最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
當(dāng)前位置: 首頁 - 科技 - 知識百科 - 正文

csv文件導(dǎo)入數(shù)據(jù)庫

來源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-09 15:45:50
文檔

csv文件導(dǎo)入數(shù)據(jù)庫

csv文件導(dǎo)入數(shù)據(jù)庫:csv文件導(dǎo)入數(shù)據(jù)庫的格式和平時(shí)導(dǎo)入其他文件是一樣的,都需要使用load data infile 語句,但是最關(guān)鍵的是格式參數(shù): 下面是舉例: use ip; load data infile E:/ip-to-country.csv into table `ip-to-country-isp` fields
推薦度:
導(dǎo)讀csv文件導(dǎo)入數(shù)據(jù)庫:csv文件導(dǎo)入數(shù)據(jù)庫的格式和平時(shí)導(dǎo)入其他文件是一樣的,都需要使用load data infile 語句,但是最關(guān)鍵的是格式參數(shù): 下面是舉例: use ip; load data infile E:/ip-to-country.csv into table `ip-to-country-isp` fields

csv文件導(dǎo)入數(shù)據(jù)庫的格式和平時(shí)導(dǎo)入其他文件是一樣的,都需要使用load data infile 語句,但是最關(guān)鍵的是格式參數(shù): 下面是舉例: use ip; load data infile E:/ip-to-country.csv into table `ip-to-country-isp` fields terminated by , optionally enclos

csv文件導(dǎo)入數(shù)據(jù)庫的格式和平時(shí)導(dǎo)入其他文件是一樣的,都需要使用load data infile 語句,但是最關(guān)鍵的是格式參數(shù):

下面是舉例:

use ip;
load data infile 'E:/ip-to-country.csv' into table `ip-to-country-isp` fields terminated by ',' optionally enclosed by '"' escaped by '"' lines terminated by '\r\n';
可以就可以把文件導(dǎo)入至數(shù)據(jù)庫表ip-to-country中。

附ip-to-country的表結(jié)構(gòu):

CREATE TABLE `ip-to-country-isp` (
 `start` bigint(20) default NULL,
 `end` bigint(20) default NULL,
 `country` varchar(11) default NULL,
 `country2` varchar(11) default NULL,
 `des` varchar(50) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
將表導(dǎo)出為csv格式:
select * from ip-to-country-isp 
into outfile 'E:/ip-to-country-isp.csv' 
fields terminated by ',' optionally enclosed by '"' escaped by '"' 
lines terminated by '\r\n'; 

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

csv文件導(dǎo)入數(shù)據(jù)庫

csv文件導(dǎo)入數(shù)據(jù)庫:csv文件導(dǎo)入數(shù)據(jù)庫的格式和平時(shí)導(dǎo)入其他文件是一樣的,都需要使用load data infile 語句,但是最關(guān)鍵的是格式參數(shù): 下面是舉例: use ip; load data infile E:/ip-to-country.csv into table `ip-to-country-isp` fields
推薦度:
標(biāo)簽: 格式 文件 導(dǎo)入
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top