What is analyze command used for?
No Answer is Posted For this Question
Be the First to Post Answer
Difference between join and a subquery?
8 Answers Base Automation, NMDC,
which is the best training centre for learning oracle?
What do you mean by merge in oracle and how can you merge two tables?
6. Display the client name and order date for all orders using the traditional method.
How to change user password in oracle?
Explain the blob datatype?
how to retrieve daily sal from emp table in oracle 10g
What are the different types of database objects?
The table has 3 columns 4 rows. The output is which column has least null values( A COL SHOULD BE THE OUTPUT) Write the query plz. A B C ---------- 1 NULL 7 2 4 NULL NULL 5 NULL 3 NULL NULL
what are the disadvantages of hierarchial database over RDBMS?
what are archived logs?
Give SQL Query to find the number words in a sentence ? ex: 'ram charan singh' then ans:3 Answer:select length(trim('ram charan singh')) - length (replace (trim ( 'ram charan singh'),' ','')) +1 from dual The above query working properly when space between the words is only one &similar But ,If the space between the words is nonuniform. Ex:'ram charan singh is good' ans:5 i am not getting this answer using above query.