I've a table_name
like this:
No | Name | Inserted_Date | Inserted_By
=====================================
and then I've file name.csv like this
no,name
1,jhon
2,alex
3,steve
I want to load these file table_name
using syntax like this:
LOAD DATA INFILE 'name.csv' INTO TABLE table1
FIELDS TERMINATED BY ','
LINES TERMINATED BY '
'
IGNORE 1 LINES
???
the question is, what should I put on ???
so I can store data like this:
No | Name | Inserted_Date | Inserted_By
=====================================
1 | jhon | sysdate() | me
2 | ales | sysdate() | me
3 | steve | sysdate() | me
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…