DECLARE
sname VARCHAR2(20);
BEGIN
sname:='xxx';
sname:=sname||' and tom';
dbms_output.put_line(sname);
END;
或者
sname VARCHAR2(20) :='jerry';