-- Need guide to create Stored Procedure for CLOB datatype
-- My table name XYZ having two columns
col1 as number
col2 as CLOB
select * from XYZ ;
col1 col2(clobtype)
-- ---
1 aasddsf
2 basdfsdf
3 cafdasd
4 dadfsd
5 eafasd
if i pass col1 as input,then
i must get display for col2
sql>exec col1(3) ;
col2
----
cafdasd
This is wht i requied !!