Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


how u can find the n row from a table?

Answers were Sorted based on User's Feedback



how u can find the n row from a table?..

Answer / a.brahmam

select * from(select rownum r,column name,from table name)
where r=&n;

Is This Answer Correct ?    0 Yes 0 No

how u can find the n row from a table?..

Answer / rashmi

select max(rownum) from table1 where rowid is not null

Is This Answer Correct ?    2 Yes 3 No

how u can find the n row from a table?..

Answer / 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

how u can find the n row from a table?..

Answer / manoj gogoi

select a2.*
from
(select rownum r,a1.* from a a1)a2
where a2.r=&Any_Row_U_Want

Is This Answer Correct ?    0 Yes 2 No

how u can find the n row from a table?..

Answer / guest

select rownum,ename,sal,empno from(select ename,sal,empno from
table_name order by sal) group by rownum,ename,sal,empno
having rownum=(select count(*) from table_name

Is This Answer Correct ?    10 Yes 13 No

how u can find the n row from a table?..

Answer / anudeep

select * from employee where rowid=&n;

Is This Answer Correct ?    1 Yes 4 No

how u can find the n row from a table?..

Answer / karunakar

select *
from employees
where rowid=(select max(rowid) a
from employees)

Is This Answer Correct ?    1 Yes 5 No

how u can find the n row from a table?..

Answer / abhi

select * from employee where employeeno="1";

Is This Answer Correct ?    1 Yes 5 No

how u can find the n row from a table?..

Answer / monika

select employee_id,last_name,salary
from employees
where rownum < n
ORDER by salary

Is This Answer Correct ?    0 Yes 11 No

Post New Answer

More SQL PLSQL Interview Questions

When you have to use a default "rollback to" savepoint of plvlog?

0 Answers  


Is sql a programming?

0 Answers  


What are schema-level triggers?

0 Answers  


How many null values can be inserted in a coulmn whihc is unique constraint

8 Answers   Flextronics,


What is the difference between the implicit and explicit cursors?

0 Answers  


What are the different types of triggers?

0 Answers  


How will you select unique values from a list of records?

7 Answers   Cap Gemini,


How can you create an empty table from an existing table?

0 Answers  


SELECT flavor, SUM (ice_cream_sales) FROM sales_detail GROUP BY flavor ORDER BY 2 DESC If the "sales_detail" table contains ten records with different values in the flavor column (two "vanilla," three "chocolate," four "strawberry," and one NULL), how many rows are returned by the sample code above? 1. 0 rows 2. 1 row 3. 3 rows 4. 4 rows 5. 10 rows

8 Answers   Sonata,


What is user in sql?

0 Answers  


How do I add a primary key to a table?

0 Answers  


What is memory optimized table?

0 Answers  


Categories