+ 2
What is the difference between Varchar and Varchar2 data type ?
3 Respuestas
+ 2
varchar has a memory allocation of 1-2000 bytes. varchar2 has a 'variable' memory allocation of the limit 1-4000 i.e if you insert varchar(20) and enter only 15 characters, 20 bytes will be used in the database whereas in varchar2 if u enter insert varchar2(20) and enter only 15 characters the rest of the five bytes will not be used in the database
0
helpful
0
I don't agree with stunterx, what you are saying is difference between char and varchar. There is no difference between varchar and varchar2 other then name. The main difference is varchar is ANSI standard and varchar2 is oracle proprietary.