Write SQL query to see first 100 recorders from table?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
Answer / shiva ch
Select TOP(100) from emp;
Displayed first 100 columns in emp table
| Is This Answer Correct ? | 0 Yes | 1 No |
Why we have to do manual testing?
What is Entry Criteria & Exit Criteria
what are the add-in to the mercurytools to test webbased dotnet applications.answer plz
what is the diffrence b/w Sanity testing and smoke testing
what is a api testing/
Plz explan entry and exit criteria with example??? thanks
what is production defects?
Whats the resumption and assumption criteria in Test plan? explain briefly.
2 Answers CTS, Oneclick Testing Solutions,
After which phase you are performing UAT?
Write a Test Case to test Can of Coke?
hi tell me different testing methodologies
How will you set the Dependency in the Quality center? Say if you will fail a test case and two or more test cases are dependent on that particular test case. In this case how will you handle in failing the test case.