SELECT * FROM
(SELECT TITLE FROM MOVIE ORDER BY RANK DESC)
WHERE ROWNUM > 4;
when i run the above query .it produces output as NO ROWS
SELECTED.why ?plz any one help me
Answer Posted / mohan
select * from movie where rownum>4(select title from movie
rank()over(order by title desc);
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
List the various oracle database objects?
How do I uninstall oracle client from windows?
How to upsert (update or insert into a table)?
What is a view and how is it different from a table?
How to create a new view in oracle?
How to display employee records who gets more salary than the average salary in the department?
What is a table index in oracle?
How to define a data field as not null?
What is a private synonym?
Explain mutating triggers.
How to pass a parameter to a cursor in oracle?
What is blob data type in oracle?
Can we connect to ORACLE db using Windows Authentication?
Hi Can any one tell me what are the API's used in requisition import.
Explain cascading triggers.