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
What is format trigger?
Is oracle a language?
When do you get a .pll extension in oracle?
Explain oracle left join with an example?
What is Data Dictionary Cache in Oracle?
master table and child table performances and comparisons in Oracle ?
What is set operator oracle?
What are the four Oracle system processes that must always be up and running for the database to be useable?
Can multiple columns be used in group by in oracle?
Explain integrity constraint?
Does oracle database need java?
What is the recommended interval at which to run statspack snapshots, and why?
How do I manually create a database in oracle?
How view is different from a table?
How to check the oracle tns settings?