How we get some middle records in one table?
Answers were Sorted based on User's Feedback
Answer / meena
select * from emp where rownum=(select mod(rownum,2) from emp);
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / prasanna
By using a search condition like 'where'
Eg:select eno,ename,esal from emp where eno=3;
| Is This Answer Correct ? | 2 Yes | 4 No |
what do you mean by classloader?
What are different types of arrays?
Why do we need strings in java?
How can u increase the heap size in the memory?
What is native method in java?
Explain the difference between association, aggregation and inheritance relationships.
what is j2se
Can constructor be static or final?
Can we sort set in java?
Java violates few objected oriented concepts. Can you explain in what way?
Explain thread in java?
How does thread synchronization occurs inside a monitor?