Write SQL query to see first 100 recorders from table?
Answer Posted / 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 |
Post New Answer View All Answers
Can anyone tell me, What is wound fixing?
Can anyone please answer the below question on Manual Testing: Tell me about atleast 5 bugs you come across in your last testing?
About Hierarchy level in your company.
What are the qualities needed by a software tester?
if yahoo ceo asks you to do performance testing for yahoo site, what are the inputs you ask from them?
Scenario-based testing Option 1 concentrates on actor and software interaction Option 2 misses errors in specifications Option 3 misses errors in subsystem interactions Option 4 Both 1 abd 2
Is anybody have the telecom systems test cases from start to end?
What is date driven testing?
what is metrics in software testing? give me a brief detail about it?
Differentiate test bed and test environment?
If automating - what is your process for determining what to automate and in what order
What is a maturity level?
What is error cusing tecnique
what is the challenging position faced in the testing not in point of management point of view it must be in the point of while testing the application?
1) how will you do validation testing in combo box ? (2)Suppose user does not want maximum length validation message, but when tester inserts data in textbox and it gets truncated, how will you resolve this issue ? (3)if a user inserts maximum number in quantity textbox in a PHP based web application then what result will show?