标签:term HERE inf test set union escape int from
load data infile ‘c:/test.csv‘
into table test [character set utf8]
fields terminated by ‘,‘ optionally enclosed by ‘"‘ escaped by ‘"‘
lines terminated by ‘\r\n‘;
select * from test
into outfile ‘c:/test.csv‘
fields terminated by ‘,‘ optionally enclosed by ‘"‘ escaped by ‘"‘
lines terminated by ‘\r\n‘;
如果要带上字段名用:
-- select * from (
-- select ‘col1‘,‘col2‘,‘col3‘,‘col4‘ union
-- (select col1,col2,col3,col4 from test where col1 = ‘xxx‘ order by col1)
-- ) tbl
标签:term HERE inf test set union escape int from
原文地址:https://www.cnblogs.com/jffun-blog/p/10217592.html