I have a oracle view that returns multiple number columns: price, avg, excess, etc. Some (avg, Excess) columns are calculated by functions (return as numbers). When I do comparison filter on these number columns of the view, no data returns, disregarding greater, less, nor equal operator. Tried to recast the column to number using To_Number without success. However, other non-aggregated number columns (price) are fine. Something is strange in function below?
FUNCTION getExcess(p_Excess INVENTORY.Excess%TYPE) RETURN NUMBER AS
v_Total NUMBER;
BEGIN
SELECT getMax - NVL(getAdj,0) - NVL(p_Excess,0) INTO v_Total
FROM Dual;
END IF;
IF v_Total < 0 THEN
v_Total := 0;
ELSE
v_Total := ROUND(v_Total);
END IF;
RETURN NVL(v_Total,0);
END getExcess;
-- no data return on filtered query where data clearly showing multiple rows with excess -- greater than 1 Select * from MyView where Excess > 1
Any hint will help, Thanks..
END IFin the function, is that just a transcription mistake, or is it invalid? I'm not sure the function is needed as what it seems to be doing could be done in plain SQL, probably more efficiently, but that's a side issue. It would be helpful to see the view definition, and a sample of the unfiltered data from the view showing some that hasexcess > 1. – Alex Poole Jan 21 at 23:30