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 to pronounce postgresql?
How can we connect an Android App to an Oracle database and use the PL/SQL procedural code?
what is view? : Sql dba
What does subquery mean in sql?
What is data control language (dcl)?
what is the difference between myisam static and myisam dynamic? : Sql dba
How do you concatenate in sql?
What are the different schemas objects that can be created using pl/sql?
What is Materialized View? In What Scenario we Use Materialized View?
what is normalization? : Sql dba
What are sql functions? Describe in brief different types of sql functions?
How do I audit the sql sent to the server?
Why do we go for stored procedures?
How bulk collect improves performance?
What is varchar used for?