I am trying to do a select into statement to get a max value from a column. This is what I have:
SELECT stdid INTO v_stdid
FROM (SELECT stdid FROM STUDENT ORDER BY stdid DESC)
WHERE ROWNUM = 1;
I don't get the correct value though. It should be 32, but 9 is returned instead (I have a dbms_output_line(v_stdid) to check for the value. When I change the order by to ASCENDING my value changes, so I know something is happening. But why can't I get the correct max value? I feel the sort must not be completing properly.
Thank you!
You can do it this way:
But, I believe your problem is that
stdid
is being stored as a character rather than as a number. So, convert it to an integer:This would also work with your original formulation: