We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d88ad53 commit c52a4d6Copy full SHA for c52a4d6
1 file changed
박예진/8주차/260216.sql
@@ -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