Reputation: 1484
Is there any difference between varchar2 in oracle sql and pl/sql or both are same or there are some implementation difference.
Upvotes: 3
Views: 593
Reputation: 2041
There is at least one difference: the length.
in Pl/sql, it can have a maximum length of 32,767 bytes, while in sql it can only be 4,000 bytes long.
Upvotes: 4