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
What is primary key and foreign key?
Why select is used in sql?
How can triggers be used for the table auditing?
What is a left inner join?
What is an exception in pl/sql?
How many rows can sqlite handle?
What does the file extension accdb stand for?
How many unique keys can a table have?
Define sql delete statement.
what is a tablespace? : Sql dba
explain access control lists. : Sql dba
How to create an array in pl/sql?
What is the difference between function, procedure and package in pl/sql?
What is application trigger?
What is compute?