我正在尝试编写一份我将在 Excel 中发送的报告,它将两条记录连接到同一个单元格中,并在每条记录之间显示一个回车符。我一直在尝试 ||chr(10) || chr(13) || 但这仅在我作为脚本运行时才有效,而不是在我在 Excel 中运行查询时有效。
有没有更好的强制回车的方法?
选择语句如下所示:
select distinct
cap.cap_stuc "Application ID"
,stu.stu_surn "Surname"
,initcap(stu.stu_fnm1) "First Name"
,min(decode(rn, 1, choices.cap_pref)) || ' ' || min(decode(rn, 1,choices.cap_mcrc)) || ' ' || min(decode(rn, 1, choices.crs_name)) || chr(10)||chr(13) || min(decode(rn, 2, choices.cap_pref)) || ' ' || min(decode(rn, 2, choices.cap_mcrc)) || ' ' || min(decode(rn, 2, choices.crs_name)) "App Details"
谢谢