2011-01-27 10 views

答えて

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* 
関連する問題