What is the difference between varchar and varchar2?
|
As for now, they are synonyms.
If you rely on empty string and |
|||||||||||||
|
|
Currently VARCHAR behaves exactly the same as VARCHAR2. However, this type should not be used as it is reserved for future usage. Taken from: Difference Between CHAR, VARCHAR, VARCHAR2 |
|||
|
|
|
For now, they are exactly the same. It's a pre-reserved variable that may be used later in the future. |
|||
|
|
Main difference between Varchar and Varchar2 is Varchar2 allocates memory dynamically. ex: when you declare Varchar(100) then at the initialization stage it reserves 100 units from your memory. but when you declare Varchar(100) and put a String with length 20 characters it takes only 20 units from your memory. and will grow as the string grows. this is the key point for using Varchar2 for most of the database designs. |
|||||||||
|