declare
v_description t11.description%type;
begin
select DESCRIPTION into v_description from t11;
dbms_output.put_line(v_description);
exception
when too_many_rows then
dbms_output.put_line('Too many rows are returned');
end;
v_description t11.description%type;
begin
select DESCRIPTION into v_description from t11;
dbms_output.put_line(v_description);
exception
when too_many_rows then
dbms_output.put_line('Too many rows are returned');
end;