0
我編寫了可以從頭到尾(所有可能的值)進行良好測試的SQL代碼,但是當向Excel生成報告時彈出錯誤(「」不是有效的浮點值)。實際上,我的值都不是有效的浮點值,它只是一個列表。我有後處理,所以它不涉及任何宏。我如何克服這個錯誤,真正的問題是什麼?在SQL相當簡單:在質量中心生成Excel報告時出錯
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
固定能否請你分享查詢的結果? – 2013-02-10 08:20:44
QC不允許您從測試查詢頁面輕鬆複製和粘貼。在今天尋找解決方法,發現我的公司得到並推動QC的更新,解決了這個問題。 – lpeckazca 2013-02-12 16:43:43