how to i write the query 'NISHI' TO
N
I
S
H
I
Answers were Sorted based on User's Feedback
Answer / pradeep
Select SUBSTR('NISHI',LEVEL,1) from dual
CONNECT BY LEVEL<=length('NISHI')
| Is This Answer Correct ? | 15 Yes | 1 No |
Answer / 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 |
Answer / karthik
SELECT 'NISHI' NAME FROM DUAL;
COLUMN NAME FORMAT A1
/
| Is This Answer Correct ? | 1 Yes | 3 No |
What is Data Block ?
What different of iner joint & outer joint with example
How to fetch the row which has the max value for a column?
What is the difference between a hot backup and a cold backup in oracle?
can you write commit in triggers?
can a table has a column that has only view data and in other columns we can change data?
How to select some columns from a table in oracle?
Which are the five query types available in oracle?
How do I find the database name in oracle?
What is the Tune Query
What is different types of joins?
what are indexes..how many types of index's are there and what are they?
7 Answers Green Info Solutions, TCS,