how to i write the query 'NISHI' TO
N
I
S
H
I

Answers were Sorted based on User's Feedback



how to i write the query 'NISHI' TO N I S H I..

Answer / pradeep

Select SUBSTR('NISHI',LEVEL,1) from dual
CONNECT BY LEVEL<=length('NISHI')

Is This Answer Correct ?    15 Yes 1 No

how to i write the query 'NISHI' TO N I S H I..

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

how to i write the query 'NISHI' TO N I S H I..

Answer / karthik

SELECT 'NISHI' NAME FROM DUAL;

COLUMN NAME FORMAT A1
/

Is This Answer Correct ?    1 Yes 3 No

how to i write the query 'NISHI' TO N I S H I..

Answer / madhu

Select To_char('N I S H I') from dual

Is This Answer Correct ?    2 Yes 6 No

Post New Answer

More Oracle General Interview Questions

What is an Index Segment ?

2 Answers  


Can we create more than one index on particular column?

1 Answers  


How to test null values?

0 Answers  


How to download oracle database 10g xe?

0 Answers  


You have found corruption in a tablespace that contains static tables that are part of a database that is in NOARCHIVE log mode. How would you restore the tablespace without losing new data in the other tablespaces?

0 Answers  






How many memory layers are in the shared pool?

1 Answers  


If a parameter is used in a query without being previously defined, what diff. exist betw. report 2.0 and 2.5 when the query is applied ?

0 Answers   Oracle,


I have one table :EID,Depid,ename,sal I want to have max(sal) in each department.

5 Answers   Microsoft, Oracle, TCS,


How to turn on or off recycle bin for the session?

0 Answers  


what is meant by magic query

0 Answers  


how the indexes are stored in the Oracle Database?

0 Answers  


Explain what are the advantages of views?

0 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1808)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)