0

我编写了从头到尾测试良好的 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
4

1 回答 1

0

此问题已由 ALM 补丁 12 修复。

于 2013-05-16T21:47:54.943 回答