declare
aa varchar2(20);
begin
aa := &cc;
dbms_output.put_line(aa);
end;
如果输入的是字符串,那么输入时要加引号。如果想输出hello,那就要输入'hello'