Xbody
Benutzer
- Beiträge
- 9
Wie auch letzte Woche ist mir die Syntax wieder nicht bewusst.
Es kommt Error(5,29): PLS-00405: subquery not allowed in this context
Problem; Wie soll ich sonst die Anzahl Zeilen abfragen?
Code:
CREATE OR REPLACE PROCEDURE CLEAR (X CHAR) AS
maxStd NUMBER;
currentRowNum NUMBER := 1;
BEGIN
WHILE (currentRowNum <> (Select Count(*) from Tsum))
LOOP
...
END LOOP;
END;
Es kommt Error(5,29): PLS-00405: subquery not allowed in this context
Problem; Wie soll ich sonst die Anzahl Zeilen abfragen?