There was an error while loading. Please reload this page.
1 parent a831428 commit c9edba4Copy full SHA for c9edba4
HackerRank/SQL_Certification/Basic/task1.sql
@@ -0,0 +1,3 @@
1
+-- This is a not exact SQL request, but just what I stored after
2
+SELECT employee_ID, name FROM EMPLOYEES
3
+WHERE description LIKE '%HR%' AND employee_ID IN (SELECT employee_ID FROM last_year_bonus WHERE bonus >= 5000)
HackerRank/SQL_Certification/Basic/task2.sql
+SELECT roller_ID, name FROM students WHERE
+roller_ID IN (SELECT roller_ID from ROLLER_STUDENTS_MARK WHERE ( subject_one+subject_two+subject_three< 100))
0 commit comments