MySQL データベースに対して以下の SQL クエリを実行しました。
load data local infile '/tmp/ad_packs.csv'
into table ad_packs
fields terminated by ','
enclosed by '"'
lines terminated by '\n'
(company_name,pack_size,remaining,ad_pack_purchase_officer,advertising_contact_officer,updated_ad_pack,email,phone,website,note,organisation_id,categories,modified)
これは1行のみを挿入するようで、すでにcsvをチェックしており、ヘッダーがあるため、ヘッダーである最初の行のみを挿入します。
理由はありますか?