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 cascade in sql?
Is sql a backend?
What is file based approach?
Why do we use function in pl sql?
Does sql require a server?
What is the use of procedures?
What is graph sql?
How many types of triggers are there in pl sql?
what is meant by urlencode and urldocode? : Sql dba
What is the need of a partition key?
How to avoid using cursors? What to use instead of cursor and in what cases to do so?
Write the alter statement to enable all the triggers on the t.students table.
Is it mandatory for the primary key to be given a value when a new record is inserted?
How do I create a sql script?
Can we use views in stored procedure?