Project/PO-MI
ec2에 파일 업로드 했을 때 mysql 테이블로 옮기기
Hemon_
2021. 8. 7. 23:20
728x90
* 테이블 내용 지우는 법
truncate table;
맥 터미널로 파일 업로드 후 파일 위치 확인하기.
load data local infile '/home/ec2-user/화물품목통계분류.csv' into table tablename fields terminated by ',' lines ter
minated by '\n' ignore 1 rows;
load data local infile '/home/ec2-user/화물품목통계분류.csv' into table tablename fields terminated by ',' enclosed
by '"' lines terminated by '\n' ignore 1 rows;
728x90
LIST