Hello,
I have table requirement where the field contains data of 100 characters
create table test_dd
(
name varchar2(100));
insert into test_dd
values
('abc Software private limited dca sunrise corporation');
commit;
I need to represent if the name is more than 35 characters it will display in next line.