write a query to count number of alphabets in given string
for example "APPLE"

write a query to generate sequence from 50 to 100


write a query to display in single string "ABCD,EFGH,IJKL,PQRS"

Answer Posted / ajit nayak

1:-select length('apple')
from dual;
o/p:-5

2:-select rownum
from dual
connect by level between 50 and 100;

3:-select replace ('ABCD,EFGH,IJKL,PQRS',',')
from dual;

Is This Answer Correct ?    4 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is oracle a relational database?

516


Can we insert data in view oracle?

531


What happens to the indexes if a table is recovered?

572


various types of hints and their usage

2127


Can group functions be used in the order by clause in oracle?

571






Is it possible to center an object horizontally in a repeating frame that has a variable horizontal size ?

1874


How to write a left outer join with the where clause in oracle?

623


What is ceil and floor in oracle?

568


What is a data lock in oracle?

605


What is primefaces used for?

555


In which language oracle has been developed?

641


What is connection pooling in oracle?

546


What is oracle thin client?

530


How can windows applications connect to oracle servers?

516


What are the execution control statements in oracle?

598