WHAT IS THE MAX LENGHT OF VARCHAR2 DATATYPE IN PL/SQL?
A
Correct answer
Explanation
In PL/SQL, VARCHAR2 can hold up to 32767 bytes (32KB), which is much larger than the SQL limit of 4000 bytes. This extended capacity is useful for procedural code processing larger text strings. Options like 1024 or 255 are outdated limits from earlier versions or different contexts.