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
What is time based sql injection?
What is the best partition size for windows 10?
what is the difference between mysql_fetch_object and mysql_fetch_array? : Sql dba
How do I count duplicates in sql?
What is the advantage of index in sql?
How many types of indexes are there in sql?
What is delimiter sql?
i have a column which may contain this kind of value: 123*67_80,12*8889_5,34*8_874 ,12*7_7 (can contain space before a comma, and this string length can be anything) now i want to split this value into two column like: column1: 123*67,12*8889,34*8,12*7 column2: 80,5,874,7 use function for this
If the application is running very slow? At what points you need to go about the database in order to improve the performance?
how to convert numeric values to character strings? : Sql dba
What are the types of index in sql?
What is an emotional trigger?
Inline the values in PL/SQL, what does it mean.?
what is 'mysqlcheck'? : Sql dba
how many groups of data types? : Sql dba