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 |
Explain how to test documents in a project that span across the software development lifecycle?
what is trigger? What is stored procedures? What is a cursor?
Hi, Can nybody tel me the how much a Manual tester should know about Database and its connections with the web application?
why we split testing into distinct stages?
Which of the following is least like the others? a) Cube b) Sphere c) Pyramid d) Circle
What is Entry and Exit criteria for a Test Plan?
What are the main key components in Web applications and client and Server applications? (differences)
Explain end-to-end testing?
I am planning to write a ISTQB Certification exam , i don't know about EXAM fee structures , please tell me the fee structure ? mail id: karthitkd.123@gmail.com
Hi, I am writing ISTQB foudation exam on 9 June 2010. Anyone please send me pdf of the book "Sample Exam Questions: ISTQB Certified Tester Foundation Level (Paperback)by John A. Estrella " to hsdantot@yahoo.com Thanks Sree
What is a test harness?
What is random/monkey testing? When is it used?