Write a query to find the number of employees who got more
that 20,000/- and 50,000/- sal
Write a query to find the number of sudents in each course
Answers were Sorted based on User's Feedback
Answer / uday kumar_anem
1. select count(*)
from employee
where sal>=20000 and sal<=50000
2. select count(*)
from student
group by course
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / vishal
oh sorry i missed it..
thx for correcting me :-)
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / vishal
assuming emp-id and sal tobe the fields in the
table "Employee" followng query can be used
Select emp-id, sal from Employee where sal between "20000"
and "50000"
OR
you have to run two different queries to extract records as
selecting records above 20,000 would cover the second part
too
2. select count (stud_id) from Student where
course_name="Testing"
hope they would help
| Is This Answer Correct ? | 0 Yes | 2 No |
What is JBOD?
U may undergone many projects. Do all the projects match up with customer's expectations?
What is a 'walkthrough' in Software Testing?
Testing that checks that a modification applied during maintenance has NOT affected the code corresponding to those functions of the system that should be unaffected by the modification is called which one of the following? 1. Acceptance testing 2. Unit testing 3. Regression testing 4. Validation testing 5. System testing
What is system test?
What is the major risk or challenge faced by you as QA analyst other than clash with the developer regarding the defect log.
What is the formal technical review?
What is the difference between Code Release and Code Build?
Explain ad hoc testing?
What is test script?
When is a test considered to be successful?
I am having 1.5 years of exp. in Manual testing.What I have to do now? Should I do ISTQB Certification or Perl/Shell Scripting Languages? OR Anything else.Please Guide me properly.