write a query that returns first characters of each word in
Oracel/Sql pl sql
Answer Posted / hari k
set serveroutput on;
declare
cursor c1 is select substr(name1,1,1) from tab1;
v_string tab1.name1%type;
begin
open c1;
loop
fetch c1 into v_string ;
exit when c1%notfound;
dbms_output.put_line(v_string);
end loop;
end;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How do I view a table in sql?
Why partition by is used in sql?
How to run sql statements with oracle sql developer?
What is difference between db2 and sql?
How to process query result in pl/sql?
how to add a new column to an existing table in mysql? : Sql dba
hi,i plan to put experience on PLSQL ,can anyone suggest me for any institutes in bangalore or how to prepare for interviews
Explain the working of primary key?
How do I access sql anywhere database?
Explain the uses of database trigger.
What is the difference between union and union all command?
What is memory optimized?
What are pl/sql cursors?
What is triggering circuit?
Explian rowid, rownum? What are the psoducolumns we have?