DEVELOPERS 테이블에서 Front End 스킬을 가진 개발자의 정보를 조회하려 합니다. 조건에 맞는 개발자의 ID, 이메일, 이름, 성을 조회하는 SQL 문을 작성해 주세요.
결과는 ID를 기준으로 오름차순 정렬해 주세요.
table
1. skillcodes
2. developers
With Fe as (
Select code
From skillcodes
Where category = 'front End')
Select d.id, d.email, d.first_name ,d.last_name
From developers d , Fe f
Where skill_code & f.code = f.code
order by d.id
With Fe as (
Select code
From skillcodes
Where category = 'front End')
Select d.id, d.email, d.first_name ,d.last_name
From developers d , Fe f
Where skill_code & f.code = f.code
group by d.id, d.email, d.first_name ,d.last_name
order by d.id
사담.. 이런 사소한게 코테 합격자와 불합격자를 가르는 것이 아닐까?
슬슬 공고 시즌이고, 서류도 붙은게 없지만
이런 사소한 실수로 인해 감점된다면 너무 아쉬울 것 같다.ㅜㅜ
항상 경각심을 가지자.