Write SQL query to see first 100 recorders from table?

Answers were Sorted based on User's Feedback



Write SQL query to see first 100 recorders from table?..

Answer / rohinid

I think query should be:

select TOP(100) from TABLE_NAME;

Not sure, its correct or not.

Is This Answer Correct ?    11 Yes 2 No

Write SQL query to see first 100 recorders from table?..

Answer / navrattan singh

Select * from emp where rownum<=100

Is This Answer Correct ?    3 Yes 0 No

Write SQL query to see first 100 recorders from table?..

Answer / ammu

SQL server
select top 100 * from table_name;
Oracle
select * from table_name where rownum<=100;
MySQL
select * from table_name limit 100;

Is This Answer Correct ?    2 Yes 0 No

Write SQL query to see first 100 recorders from table?..

Answer / ranjeet verma

select top(100)* from emp

select top 100 * from emp
Select * from emp where rownum<=100
select top 100 percent * from emp

Is This Answer Correct ?    1 Yes 0 No

Write SQL query to see first 100 recorders from table?..

Answer / ammu

Oracle
select * from table_name where rownum<=100;

SQL server
select top 100 * from table_name;

MySQL
select * from table_name limit 100;

Is This Answer Correct ?    0 Yes 0 No

Write SQL query to see first 100 recorders from table?..

Answer / ajay

select TOP 100 from table;

Is This Answer Correct ?    1 Yes 2 No

Write SQL query to see first 100 recorders from table?..

Answer / dfg

select TOP 100 from table;

Is This Answer Correct ?    0 Yes 1 No

Write SQL query to see first 100 recorders from table?..

Answer / shiva ch

Select TOP(100) from emp;

Displayed first 100 columns in emp table

Is This Answer Correct ?    0 Yes 1 No

Write SQL query to see first 100 recorders from table?..

Answer / ashavini patil

Select Top 100* from Table_Name

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More Manual Testing Interview Questions

What is known issues?

3 Answers   Mantra Media, Yardi,


What do u mean by Functional Testers and Performance Testers? Need the Answer Immediately. Thank u

6 Answers  


What is QA Life Cycle?Can anyone describe it?

4 Answers  


what is meant by Priority nad severity?

13 Answers   Verizon,


What is the difference between latent and masked defects?

0 Answers  






How to write a test case for Email and web address

3 Answers   PAS Technologies, TNQ, TNQ Books and Journals,


explain test life cycle

6 Answers  


On which basis u'll prepare the test cases.

6 Answers   Semantic Space,


tell me about low severity & low priority bug?

3 Answers  


4) Adhoc Testing is performed with A)A formal test plan but with out a formal testcase cool.gifA formal test case but without a test plan C) Both A and B D) None of the options

5 Answers   Mind Tree,


What is Bomb Testing?

0 Answers  


difference betn adhoc testing and error guessing?

4 Answers  


Categories