Who is wasting space ??? Char or Varchar2??
AK111Sep 20 2006 — edited Sep 20 2006if I have a following :-
create table tchar(text1 char(10), text2 varchar2(10))
insert into tchar values('ABC','EFG')
In this case, I am saving string with 3 characters. According to table structure, who is wasting space??
Please reply.
Thanks.