how u can find the n row from a table?
Answer Posted / kris17.danger
SELECT * FROM ( SELECT ROWNUM R , A.* FROM TABLE_NAME A )
WHERE R=N;
Herer N is the number of row which need to be find.
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is the example of procedure?
What is pls integer?
What is acid property in a database?
Write a sql select query that only returns each name only once from a table?
Can we debug stored procedure?
explain what is mysql? : Sql dba
What is foreign key and example?
What is the difference between function, procedure and package in pl/sql?
What is right join sql?
What is query execution plan in sql?
What is a left join?
What is the difference between a procedure and a function?
what is normalization? : Sql dba
What problem one might face while writing log information to a data-base table in pl/sql?
Which join is like an inner join?