set serveroutput on;declare 
   a varchar2(20);
begin
  select 用户名||密码 into a from login where rownum<2;
  dbms_output.put_line(a);
end;
/