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 are stored procedures?
Hello All, Could any one provide me FAQs/interview questions on oracle PL/SQL
There are three tables : E : EID,ENAME D : DID,DNAME empdept : eid, did select the employees who doesn't belong to any dep
What is the quickest way to export a table to a flat file?
Can u make a synonym for deptno=10 only from emp table.
Give the different types of rollback segments.
How to find out what privileges a user currently has in oracle?
Design database draw er diagram for a certain scenario ?
0 Answers Keane India Ltd, TATA,
how to store only time in a data base table
How to use subqueries with the exists operator in oracle?
What is Private Database Link ?
What is recycle bin in Oracle?