maverick
maverick

Reputation: 1484

difference between varchar2 in oracle sql and pl/sql

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

Answers (1)

ErikL
ErikL

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

Related Questions