What is difference between varchar and varchar2 ?
Ask by Anonymous User
Updated 18 Sep 2020
A Brief Comparison between varchar and varchar2
3) Allocate fixed size of data irrespective of the input.
Ex: We defined varchar (15) and entered only 10 characters. But it allocates space for entire 15 characters.
3) Allocate the variable size of data based on input.
Ex: We defined varchar2 (15) and entered only 10 characters. Then varchar2 will allocate space for 10 characters only but not for 15.