SI Stud name Subject Marks Pass/Fail
1 Sham Maths 40 P
1 Sham Physics 50 P
1 Sham Bio 20 F
2 Ram Maths 40 P
2 Ram Physics 50 P
2 Ram Bio 60 P
For the above data , write the SQL query for the student who passed in all the subjects . For eg : I want the data of only Ram coz he passed all subjects .
Answers were Sorted based on User's Feedback
Answer / ajmal
SELECT *
FROM STUDENT_TABLE
WHERE SI NOT IN
(SELECT DISTINCT SI
FROM STUDENT_TABLE
WHERE PASS_FAIL = 'F'
)
The inner query will retrieve all the SI numbers for who is failed in at least 1 subject(eg: Sham). The outer query will retrieve the other student's details(eg: Ram).
| Is This Answer Correct ? | 19 Yes | 0 No |
Answer / guest
Select Stud_name
From Student_Table
Where Pass_Fail = P
Group by SI
| Is This Answer Correct ? | 6 Yes | 19 No |
How are write I/Os from the buffer pool executed?
What is the use of value function?
Write a query to extract first 5 characters of a name in the column Stud_Name?
how to resolve -818 error. how to see timestamp token in load module and plan
Where besides the DB2 catalog is database object information stored by DB2?
What is the use of runstats in db2?
What are foreign keys?
What is cloudant database?
What is sqlca’s maximum length?
What is the function of buffer manager?
What are the levels of isolation available with DB2V4
What is a page?