这是我的控制文件
load data
infile ’sample3.dat’ “str ‘”
into table example
fields terminated by ‘,’ optionally enclosed by ‘"’
(item char(10),
destination char(2))
在上面的例子中,有人可以告诉我默认分隔符吗?
答案 0 :(得分: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*