How we get some middle records in one table?
Answer Posted / meena
select * from emp where rownum=(select mod(rownum,2) from emp);
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is difference overloading and overriding?
Do I need java on my pc?
A non-static inner class may have object instances that are associated with instances of the class’s outer class. A static inner class does not have any object instances.
What do you mean by collectors in java 8?
What are the features of junit?
What is the benefit of abstract class?
FOR EXAMPLE WE R HAVING TWO LIST ELEMENTS ..BOTH LISTS CONTAINS ID,NAME,PLACE ..I NEED TO COMPARE BOTH IDS IN TWO LISTS,IF ID'S R SAME MEANS WE HAVE ADD THE DETAILS(LIKE NAME,PLACE) TO MAP...HOW IS POSSIBLE ?CAN ANY ONE SUGGEST?
Explain why wait(), notify() and notifyall() methods are in object class rather than in thread class?
How can we make a class virtual?
Explain about the performance aspects of core java?
When do we use hashset over treeset?
What is another word for methodology?
Which class is the superclass for every class in java programming?
When will you define a method as static in Java?
Is boolean a wrapper class in java?