Skip to content

Commit c52a4d6

Browse files
authored
[PGS] 276034 조건에 맞는 개발자 찾기 (Lv.2)
1 parent d88ad53 commit c52a4d6

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

박예진/8주차/260216.sql

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
select distinct
2+
d.id,
3+
d.email,
4+
d.first_name,
5+
d.last_name
6+
from developers d
7+
join skillcodes s
8+
on d.skill_code & s.code != 0
9+
where s.name in ("Python", "C#")
10+
order by d.id asc;

0 commit comments

Comments
 (0)