What is the difference between varchar & varchar2 in SQL?
Answers
Answered by
0
Answer:
The major difference is that VARCHAR2 is an internal data type and VARCHAR is an external data type. ... The VARCHAR data type stores character strings of varying length. The first 2 bytes contain the length of the character string, and the remaining bytes contain the string.
Similar questions