how u can find the n row from a table?
Answer Posted / manish singhania
select * from emp where rownum<=n
minus
select * from emp where rownum<n
n=1,2,......so many
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Which join is default?
How to use sql*plus built-in timers?
What is the best partition size for windows 10?
What does an inner join do?
What are some emotional triggers?
Which is faster joins or subqueries?
What is $$ in sql?
What is AUTH_ID and AUTH_USER in pl/sql ?
Is pl sql better than sql?
What are the sql commands?
what is 'mysqld'? : Sql dba
How do you clear the screen in sql?
What are the properties of a transaction?
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
Explain normalization and what are the advantages of it?