write a query to display to 10 max record from the employee
table?
Answers were Sorted based on User's Feedback
Answer / lakshmi reddy
top 10 records
select * from emp where rownum<=10
Based on maximum salary(hithest top 10 salaries with details)
select * from (select emp.* from emp order by sal desc)
where rownum<=10
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / harish
based on salary top 10 records for emp table
select * from ( select * from emp order by sal desc)where rownum<=10;
| Is This Answer Correct ? | 0 Yes | 0 No |
Write a SQL query which should fetch the 5th maximum salary of an employee from the table?
What are the types of security?
what are the errors faced while bursting the reports and how to solve those errors?
what is Associated grouping? and how it works in cognos impromptu?
Hi All, When user run the cognos report, that report output data must be download/available in EXCEL / CSV file.? (like... list report contain PL,PT,PN,RVEN, that excel/csv default download must be list columns PL,PT,PN,REVN) Thanks in Advance, LN.
Can any one give the example for slicing and dicing of data ?(with simple query)
Can i apply drill through on chart in report studio?
What is the enterprise class platform architecture of cognos 8?
im having null data in one of the cell in my report i have to display as "no data" when u run the report how can i achive this problem?
what is fact less fact give me proper example?
what are ERP systems?
How can you schedule a report based on different time zone ?(ex: local time should be same as 10 am . Japan should get the report at 10 am. USA should get the report at 10 am).Is that possible?