https://www.hackerrank.com/challenges/placements/problem?isFullScreen=true Placements | HackerRank Write a query to output the names of those students whose best friends got offered a higher salary than them. www.hackerrank.com [코드] select sub.name from (select s.id, s.name, f.friend_id, p.salary from students as s inner join friends as f on s.id = f.id inner join packages as p on s.id = p.id) a..