Is Sysdate a system variable or a system function?
-
System Variable
-
System Function
-
Both A & B
-
None of the Above
B
Correct answer
Explanation
SYSDATE in PL/SQL is a pseudo-column that returns the current date and time from the database server. It is implemented as a function call that gets evaluated each time it is referenced, not a stored variable value. This is why SYSDATE always returns the current time when called.