Heim >Datenbank >MySQL-Tutorial >mysql中的Load data用法_MySQL

mysql中的Load data用法_MySQL

WBOY
WBOYOriginal
2016-06-01 13:36:501173Durchsuche

bitsCN.com

测试把txt文件导入至mysql数据库中:

table: 

View Code
CREATE TABLE `pet` (`name` varchar(20) DEFAULT NULL,`owner` varchar(20) DEFAULT NULL,`species` varchar(20) DEFAULT NULL,`sex` char(1) DEFAULT NULL,`birth` date DEFAULT NULL,`death` date DEFAULT NULL)

 

txt文件:D:/data.txt (txt文件下载)

txt中使用 '/N' 描述null值。

导入数据:

View Code
load data local infile 'D:/data.txt' into table petlines terminated by '/r/n' ignore 1 lines;

 

应用mysql版本:

 

 

bitsCN.com
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn