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 are the topics in core java?
what are the analysis of an object
Is java based on c?
What is a class object?
What is finalize()? Is finalize() similar to a destructor?
Why is the main method static?
What is serializable interface?
13 Answers Infosys, Probity Soft, Seed Infotech,
Can we write a class without main method in java?
Describe what a thread-local variable is in java?
String is an immutable object. Then how can the following code be justified. String s1 = ?ABC?; String s1 = s1+?XYZ?; s.o.p(s1); The output is ABCXYZ, which is the value of s1 ?
6 Answers Flextronics, Keane India Ltd,
Do you know why doesn't the java library use a randomized version of quicksort?
What is the purpose of finalization in java programming?