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
How do you find current date and time in oracle?
What is meant by an index?
Explain what are the different type of segments?
How many types of table in Oracle?
What is the purpose of tables, private synonyms and public synonyms in Oracle?
How many memory layers are in the oracle shared pool?
what are the default admin accounts in Oracle 10g ?
candidate key is subset of super key but not vice-verse explain
What is raw datatype?
How to assign a tablespace to a users in oracle?
What is system tablespace?
What is partitioned table in Oracle?
what are bitmap indexes? How does they work?
How to download oracle database 10g xe?
Can we commit inside a function in oracle?