Skip to content

Commit 7acd414

Browse files
committed
add Student Analysis solution
1 parent e059ee0 commit 7acd414

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

student-analysis.sql

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
SELECT a.roll_number,a.name
2+
FROM student_information a
3+
INNER JOIN examination_marks b
4+
ON a.roll_number = b.roll_number
5+
GROUP BY b.roll_number
6+
HAVING SUM(b.subject_one + b.subject_two + b.subject_three) < 100;

0 commit comments

Comments
 (0)