how u can find the n row from a table?
Answer Posted / rama krishna
If you want nth record from table employee then..
select * from employee where rownum <= n
minus
select * from employee where rownum < n
the above query will suffice.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
Can we join same table in sql?
What is the max nvarchar size?
What are sql*plus environment variables?
What is the difference between partition and index?
Can I create table without primary key?
What is lookup table in sql?
What is #table in sql?
What are the properties of a transaction?
Explain the difference in execution of triggers and stored procedures?
How does sql profiler work?
Why do we use sql constraints? Which constraints we can use while creating database in sql?
What is benefit of creating memory optimized table?
Is ms sql is free?
What is a call statement? Explain with an example.
Is crud a cuss word?