Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
declare
My_VarChar varchar2(20) := 'Hello KV444';
My_Clob CLOB;
begin
dbms_output.put_line(my_varchar||': This is from the Varchar2.');
My_Clob := My_varchar||': This shows Varchar2-to-CLOB conversion.';
dbms_output.put_line(My_Clob);
end;
/
Hello KV444: This is from the Varchar2.
Hello KV444: This shows Varchar2-to-CLOB conversion.
PL/SQL procedure successfully completed.