如何在oracle中为以下qry生成CSV?

时间:2016-05-02 15:30:34

标签: sql oracle

select ct.TEST_OPTION_NAME ,
cx.cert_id FROM CERT_TEST_OPTION Ct join 
cert_x_test_option Cx
on ct.test_option_ID = cx.test_option_id;

当前输出:

  

第三方考试中心0014

     

在线考试0014

     

现场0014

     

全国会议0014

寻找输出:

  

第三方考试中心,在线考试,现场,全国会议0014

1 个答案:

答案 0 :(得分:0)

我认为您希望将行转移到列中。看看这个: How to pivot rows into columns (custom pivoting)

在列中获得所需结果后,您应该可以使用

导出为CSV
select /*csv*/ .....