How to find 8th person record in a table?
Plz mail ur answers to
mak2786@gmail.com
Regards
Arun
Answers were Sorted based on User's Feedback
Answer / chaitanya.s
retrieving 8th record from emp table in scott instance
select * from emp where rownum<=8
minus
select * from emp where rownum<=7
| Is This Answer Correct ? | 9 Yes | 3 No |
Answer / fahad
select * from emp where rownum<=8
minus
select * from emp where rownum<=7
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / shaibya sandeep dwivedi
select id,salary from (select rownum as t,id,salary from
emp) where t=8;
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / raj
select * from (select a.*, rownum as n from temp_table a)
where n = 8
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / raj
select rownum,ename,address from emp where rownum=8;
| Is This Answer Correct ? | 1 Yes | 6 No |
Answer / hitesh rathod
or we can directly use
select * from emp where rownum=8;
| Is This Answer Correct ? | 6 Yes | 12 No |
How can you enable a trace for a session?
How can you rebuild an index?
Explain the payment term in ar. : oracle accounts receivable
How do you add a data file to a tablespace?
i want to know about the javaBean.what is its purpose and how it can use in Forms.
what are all the conversion and interfaces in GL,AP,AR,HRMS with example? otherwise send send link for these
0 Answers Pathway Technologies,
can u pls share responsibilities for production how to environment in odi?and how to generate report ?
can u tell me how many types of oracle and which type all detail in oracle (suppose all history of oracle )
please send me oracle pl/sql exp resume. and also faqs...
What is auto invoicing? Explain : oracle accounts receivable
hi iam kavya, i completed Oracle11i(finance module), i do not know how to face the interview questions please adivese me
Compare and contrast TRUNCATE and DELETE for a table.