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 do you mean by cdb and pdb in oracle 12c?
Is postgres faster than oracle?
what are actual and formal parameters?
What happens if the update subquery returns multiple rows?
What is merge in oracle?
Can we save images in a database and if yes, how?
Explain how you would restore a database using RMAN to Point in Time?
How do I connect to oracle database?
What is a select query statement in oracle?
What do the 9i dbms_standard.sql_txt() and dbms_standard.sql_text() procedures do?
How we can able to import our own template (users designed MS-Word templates) which has many tabular columns; need to pass some values generate by Oracle-reports9i? Actually need to import more than 400 MS-Word templates into Oracle Reports-9i to minimize layout design in Reports.
Explain index?
How to write date and time literals in oracle?
What is MTTR advisor in Oracle?
What are oracle functions?