We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e059ee0 commit 7acd414Copy full SHA for 7acd414
student-analysis.sql
@@ -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