我编写的SQL代码可以从端到端(所有可能的值)进行测试,但是当“生成报告”到Excel时,会弹出一个错误(“”不是有效的浮点值)。实际上,我的值都不是有效的浮点值,它到目前为止只是一个列表。我有关闭后处理,所以它与任何宏无关。我如何克服这个错误,真正的问题是什么? SQL非常简单:
SELECT
run1.rn_run_name,
cycle.cy_cycle,
test.ts_name,
STEP.ST_STEP_NAME,
STEP.ST_STATUS
FROM (
SELECT
*
from run
where rownum =1 order by RN_EXECUTION_DATE desc
) run1
left join cycle on cycle.cy_cycle_id = run1.rn_cycle_id
left join step on run1.rn_run_id = step.st_run_id
left join test on step.st_test_id = ts_test_id
where cycle.cy_cycle_id is not null
and run1.rn_run_id is not null
and step.st_test_id is not null
and ts_test_id is not null
order by
cycle.cy_cycle,
test.ts_name,
run1.rn_run_name,
STEP.ST_STEP_ORDER
答案 0 :(得分:0)
此问题由ALM Patch 12解决。