我编写了一个MySQL查询,用于将数据导出到文本文件中。
查询成功运行但结果与我的期望不符。
我想在列之间没有间距的情况下得到结果。
select
sample_export_record1_2013.*,
sample_export_record2_2013.*
from
sample_export_record1_2013
inner join
sample_export_record2_2013
INTO OUTFILE 'C:/Windows/temp/a20.txt'
FIELDS TERMINATED BY ""
LINES TERMINATED BY '\r\n'
STARTING BY '0'
目前此查询生成的输出如下:
01 181 2 0 P 5701 13.01.A.01 9664 0 94003048 94002596 0 3 20130101 20130106 000000001223 20130106 \N \N \N 2 1 258972658 9664 426407407 75 20050917 1 1 Reijtest \N 2 Reijtest \N o 1 2402LS \N 130 \N NL \N \N \N
我希望列之间没有空格的输出 - 看起来像
0118120P570113.01.A.0196640940030489400259603201301012013010600000000122320130106\N\N\N212589726589664426407407752005091711 Reijtest\N2Reijtest\No12402LS\N130\NNL\N\N\N
请帮助我!
答案 0 :(得分:0)
只需使用concat,SELECT CONCAT(rec1, rec2,rec3) as 'results' FROM...