how u can find the n row from a table?
Answer Posted / abhishekjaiswal
select * from employees where rownum<=&nth_row
/
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How do you create a db file?
how to check myisam tables for errors? : Sql dba
What is full join in sql?
What is left inner join in sql?
What is difference between left and right outer join?
What is a natural join sql?
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
What does the hierarchical profiler does?
what is myisam? : Sql dba
Is coalesce faster than isnull?
Is a view faster than a stored procedure?
What is sql partition?
What is bulk compiling in pl/sql.?
The in operator may be used if you know the exact value you want to return for at least one of the columns.
Explain what is a column in a table?