Tuesday, June 15, 2010

pl/sql puzzle at some forum

what is the output of the following block:

declare
type t is table of number index by binary_integer;
aa t;
begin
dbms_output.put_line('here we '||nvl(to_char(aa.count),'count'));
end;
/
Output:here we 0

No comments: