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 |
What are the benefits of automated testing over white box and black box testing?
Give me examples for high priority and hign severity defects?
is gorilla testing & monkey testing is same r not?
Suppose Username and Password is there, Username is limited to 8 characters!! Then what r all the Possible Test Cases for it??
in your project which Tull you are using and what is the version and URL?
What is difference between V-Model and Agile Model?
what is web server ur using at ur current testing of web application.
what is buddy testing ?
who you done security testing in Banking project? tell me situation where you perform?
wht is TRM
what is the difference between metrics and matrixes .. if possible please give some examples..
what are the good test cases for the login form containing 4 fields like Username,Password,LOGIN button and CANCEL button?