We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7342ce9 commit b304b0aCopy full SHA for b304b0a
MySQL/accepted-candidates-from-the-interviews.sql
@@ -0,0 +1,11 @@
1
+# Time: O(m + n)
2
+# Space: O(m + n)
3
+
4
+SELECT candidate_id
5
+FROM Candidates as a
6
+INNER JOIN Rounds as b
7
+ON a.interview_id = b.interview_id
8
+WHERE years_of_exp >= 2
9
+GROUP BY candidate_id
10
+HAVING SUM(score) > 15
11
+ORDER BY NULL;
0 commit comments