write a query that returns first characters of each word in
Oracel/Sql pl sql
Answer Posted / rajesh venati
For SQL:-
SELECT SUBSTR(ENAME,1,1) FROM EMP;
--------------------------------------------------------------
For PL-SQL:-
DECLARE
CURSOR ECUR IS SELECT SUBSTR(ENAME,1,1) FROM EMP;
BEGIN
FOR V_ECUR IN ECUR LOOP
DBMS_OUTPUT.PUT_LINE(V_ECUR.ENAME);
END LOOP;
END;
| Is This Answer Correct ? | 5 Yes | 3 No |
Post New Answer View All Answers
What is the plv (pl/vision) package offers?
Explain the significance of the & and && operators in pl sql.
What is raid? How does it help storage of databases?
what is sql? : Sql dba
Can we rollback delete command?
What is sql procedures and functions?
Does sql profiler affect performance?
What is pl/sql language case sensitive?
Is it possible to remove child records without removing master table records...the two having pk,fk relationship?
What is a sql driver?
how do you tune the slow running queries in oracle db , explain the methodology
What is the use of <> sql?
What is the difference between pl and sql?
Which table is left in left join?
What are triggers and its uses?