0

这是我的控制文件

  load data
 infile ’sample3.dat’ “str ‘”
 into table example
 fields terminated by ‘,’ optionally enclosed by ‘"’
 (item char(10),
 destination char(2)) 

谁能告诉我上面示例中的默认分隔符?

4

1 回答 1

1

记录分隔符默认为 \n,您可以像下面的示例一样更改它:

load data  
infile ’sample3.dat’ “str ‘*\n”  
into table example  
fields terminated by ‘,’ optionally enclosed by ‘"’  
(item char(10),  destination char(2))  

在这种情况下, *\n 中的记录分隔符,因此您的数据可能如下所示:

Item 1,London*
Item 2,Multi
line*
于 2011-01-27T08:25:21.553 回答