Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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..

share|improve this question
You seem to have a rogue END IF in 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 has excess > 1. – Alex Poole Jan 21 at 23:30

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.