how to retrive only second row from table?

Answer Posted / rajasekar.p

select * from (select a.*,rownum aa from orders a )
where aa=2

Please verify the same you will get the correct answer


Regards
P.Rajasekar

Is This Answer Correct ?    5 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to call a javascript function from pl sql?

755


How to call shell script from pl sql procedure?

845


What are the two types of exceptions.

818


Is crud a cuss word?

778


How do you change a value in sql?

738






How do I save a sql query?

731


How to sort the rows in sql.

810


what is online transaction processing (oltp)? : Sql dba

713


What is sql character function?

710


What are keys in sql?

723


What is view? Can we update view

1081


What will you get by the cursor attribute sql%found?

701


how to calculate the difference between two dates? : Sql dba

723


how to delete duplicate rows from a join tables(I have three tables on that join) how do you know which join is need to be used? The select statement I have is: SELECT gc_skill_type.skill_type, gc_area_tec.area, gc_technology.technology, gc_technology.id_technology, gc_area_tec.id_area_tec FROM gc_skill_type, gc_area_tec, gc_technology WHERE gc_area_tec.id_skill_type (+) = gc_skill_type.id_skill_type AND gc_technology.id_area_tec (+) = gc_area_tec.id_area_tec order by gc_skill_type.skill_type asc, gc_area_tec.area asc, gc_technology.technology asc

3579


What are sql built in functions?

677