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
what are the default admin accounts in Oracle 10g ?
Explain about integrity constraint?
What are dml statements in oracle?
Please explain drop constraint oracle?
What is merge statement used for?
In oracle there is column command, how will you explain that?
how to use select statement as formal parameter in procedure specification?(someone said that using string) ex:-procedure(a in number,select ename from emp ) i am asking syntax like this?
What are the differences between primary key and unique key?
What are the ansi data types supported in oracle?
How to concatenate two text values in oracle?
What is null value in oracle?
How to lock and unlock a user account in oracle?
Can we use bind variables in oracle stored procedure?
How to rebuild an index in oracle?
Illustrate how to determine the amount of physical CPUs a Unix Box possesses (LINUX and/or Solaris).