how to i write the query 'NISHI' TO
N
I
S
H
I
Answer Posted / ajit nayak
DECLARE
V_NAME VARCHAR2(9);
V_LEN NUMBER;
V_POS VARCHAR2(10) := NULL;
BEGIN
V_NAME := '&ENTERNAME';
FOR I IN 1..LENGTH(V_NAME)
LOOP
V_POS := SUBSTR(V_NAME,I,1);
DBMS_OUTPUT.PUT_LINE(V_POS||CHR(10));
END LOOP;
END;
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Explain the use of constraints option in exp command.
What happens to indexes if you drop a table?
How do I start tns listener?
What is rowid and rownum in oracle?
What are the restrictions in a oracle read only transaction?
What is a nvl function?
What is the difference between substr and instr?
Is a rollback possible to any savepoint?
Is primary key indexed by default in oracle?
What are the logical operations?
What is rich query?
How to connect to a remote server?
does the query needs a hint to access a materialized view?
What privilege is needed for a user to delete rows from tables in another schema?
How to define and use table alias names in oracle?