codespaces-blank
codespaces-blank copied to clipboard
Create HackerRank Sql Test Question Student Advisor Solution
SELECT roll_number,name FROM student_information a INNER JOIN faculty_information b ON a.advisor = b.employee_ID WHERE (b.gender = 'M' and b.salary>15000) or (b.gender = 'F' and b.salary>20000);