Select the correct pseudocolumns
-
CURRVAL
-
LEVEL
-
ROWNUM
-
COUNT
A,B,C
Correct answer
Explanation
Pseudocolumns behave like columns but aren't actual table columns. ROWNUM assigns a sequential number to each row returned. LEVEL indicates the depth in hierarchical queries. CURRVAL returns the current value of a sequence. COUNT is an aggregate function that calculates row counts, not a pseudocolumn. Oracle uses these special values for metadata and query control.