I am supporting code that has below schema declaration:-
create table sample (
id number Primary key,
username varchar2(100),
);
I looked up on Oracle documentation & varchar2 has two declaration modes
varchar2(n BYTE) and varchar2(n CHAR), If I don't specify explicitly BYTE or CHAR
& just declare username varchar2(500) then will 500 BYTES be allocated or 500 characters?
thanks,
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…