-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[level 2] Title: 조건에 맞는 개발자 찾기, Time: , Memory: undefined -BaekjoonHub
- Loading branch information
Showing
2 changed files
with
248 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,240 @@ | ||
# [level 2] 조건에 맞는 개발자 찾기 - 276034 | ||
|
||
[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/276034) | ||
|
||
### 성능 요약 | ||
|
||
메모리: undefined, 시간: | ||
|
||
### 구분 | ||
|
||
코딩테스트 연습 > SELECT | ||
|
||
### 채점결과 | ||
|
||
합계: 100.0 / 100.0 | ||
|
||
### 제출 일자 | ||
|
||
2024년 02월 23일 11:38:57 | ||
|
||
### 문제 설명 | ||
|
||
<p><code>SKILLCODES</code> 테이블은 개발자들이 사용하는 프로그래밍 언어에 대한 정보를 담은 테이블입니다. <code>SKILLCODES</code> 테이블의 구조는 다음과 같으며, <code>NAME</code>, <code>CATEGORY</code>, <code>CODE</code>는 각각 스킬의 이름, 스킬의 범주, 스킬의 코드를 의미합니다. 스킬의 코드는 2진수로 표현했을 때 각 bit로 구분될 수 있도록 2의 제곱수로 구성되어 있습니다.</p> | ||
<table class="table"> | ||
<thead><tr> | ||
<th>NAME</th> | ||
<th>TYPE</th> | ||
<th>UNIQUE</th> | ||
<th>NULLABLE</th> | ||
</tr> | ||
</thead> | ||
<tbody><tr> | ||
<td>NAME</td> | ||
<td>VARCHAR(N)</td> | ||
<td>Y</td> | ||
<td>N</td> | ||
</tr> | ||
<tr> | ||
<td>CATEGORY</td> | ||
<td>VARCHAR(N)</td> | ||
<td>N</td> | ||
<td>N</td> | ||
</tr> | ||
<tr> | ||
<td>CODE</td> | ||
<td>INTEGER</td> | ||
<td>Y</td> | ||
<td>N</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<p><code>DEVELOPERS</code> 테이블은 개발자들의 프로그래밍 스킬 정보를 담은 테이블입니다. <code>DEVELOPERS</code> 테이블의 구조는 다음과 같으며, <code>ID</code>, <code>FIRST_NAME</code>, <code>LAST_NAME</code>, <code>EMAIL</code>, <code>SKILL_CODE</code>는 각각 개발자의 ID, 이름, 성, 이메일, 스킬 코드를 의미합니다. <code>SKILL_CODE</code> 컬럼은 INTEGER 타입이고, 2진수로 표현했을 때 각 bit는 <code>SKILLCODES</code> 테이블의 코드를 의미합니다.</p> | ||
<table class="table"> | ||
<thead><tr> | ||
<th>NAME</th> | ||
<th>TYPE</th> | ||
<th>UNIQUE</th> | ||
<th>NULLABLE</th> | ||
</tr> | ||
</thead> | ||
<tbody><tr> | ||
<td>ID</td> | ||
<td>VARCHAR(N)</td> | ||
<td>Y</td> | ||
<td>N</td> | ||
</tr> | ||
<tr> | ||
<td>FIRST_NAME</td> | ||
<td>VARCHAR(N)</td> | ||
<td>N</td> | ||
<td>Y</td> | ||
</tr> | ||
<tr> | ||
<td>LAST_NAME</td> | ||
<td>VARCHAR(N)</td> | ||
<td>N</td> | ||
<td>Y</td> | ||
</tr> | ||
<tr> | ||
<td>EMAIL</td> | ||
<td>VARCHAR(N)</td> | ||
<td>Y</td> | ||
<td>N</td> | ||
</tr> | ||
<tr> | ||
<td>SKILL_CODE</td> | ||
<td>INTEGER</td> | ||
<td>N</td> | ||
<td>N</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<p>예를 들어 어떤 개발자의 <code>SKILL_CODE</code>가 400 (=b'110010000')이라면, 이는 <code>SKILLCODES</code> 테이블에서 CODE가 256 (=b'100000000'), 128 (=b'10000000'), 16 (=b'10000') 에 해당하는 스킬을 가졌다는 것을 의미합니다.</p> | ||
|
||
<hr> | ||
|
||
<h5>문제</h5> | ||
|
||
<p><code>DEVELOPERS</code> 테이블에서 Python이나 C# 스킬을 가진 개발자의 정보를 조회하려 합니다. 조건에 맞는 개발자의 ID, 이메일, 이름, 성을 조회하는 SQL 문을 작성해 주세요.</p> | ||
|
||
<p>결과는 ID를 기준으로 오름차순 정렬해 주세요.</p> | ||
|
||
<hr> | ||
|
||
<h5>예시</h5> | ||
|
||
<p>예를 들어 <code>SKILLCODES</code> 테이블이 다음과 같고,</p> | ||
<table class="table"> | ||
<thead><tr> | ||
<th>NAME</th> | ||
<th>CATEGORY</th> | ||
<th>CODE</th> | ||
</tr> | ||
</thead> | ||
<tbody><tr> | ||
<td>C++</td> | ||
<td>Back End</td> | ||
<td>4</td> | ||
</tr> | ||
<tr> | ||
<td>JavaScript</td> | ||
<td>Front End</td> | ||
<td>16</td> | ||
</tr> | ||
<tr> | ||
<td>Java</td> | ||
<td>Back End</td> | ||
<td>128</td> | ||
</tr> | ||
<tr> | ||
<td>Python</td> | ||
<td>Back End</td> | ||
<td>256</td> | ||
</tr> | ||
<tr> | ||
<td>C#</td> | ||
<td>Back End</td> | ||
<td>1024</td> | ||
</tr> | ||
<tr> | ||
<td>React</td> | ||
<td>Front End</td> | ||
<td>2048</td> | ||
</tr> | ||
<tr> | ||
<td>Vue</td> | ||
<td>Front End</td> | ||
<td>8192</td> | ||
</tr> | ||
<tr> | ||
<td>Node.js</td> | ||
<td>Back End</td> | ||
<td>16384</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<p><code>DEVELOPERS</code> 테이블이 다음과 같다면</p> | ||
<table class="table"> | ||
<thead><tr> | ||
<th>ID</th> | ||
<th>FIRST_NAME</th> | ||
<th>LAST_NAME</th> | ||
<th>EMAIL</th> | ||
<th>SKILL_CODE</th> | ||
</tr> | ||
</thead> | ||
<tbody><tr> | ||
<td>D165</td> | ||
<td>Jerami</td> | ||
<td>Edwards</td> | ||
<td><code>[email protected]</code></td> | ||
<td>400</td> | ||
</tr> | ||
<tr> | ||
<td>D161</td> | ||
<td>Carsen</td> | ||
<td>Garza</td> | ||
<td><code>[email protected]</code></td> | ||
<td>2048</td> | ||
</tr> | ||
<tr> | ||
<td>D164</td> | ||
<td>Kelly</td> | ||
<td>Grant</td> | ||
<td><code>[email protected]</code></td> | ||
<td>1024</td> | ||
</tr> | ||
<tr> | ||
<td>D163</td> | ||
<td>Luka</td> | ||
<td>Cory</td> | ||
<td><code>[email protected]</code></td> | ||
<td>16384</td> | ||
</tr> | ||
<tr> | ||
<td>D162</td> | ||
<td>Cade</td> | ||
<td>Cunningham</td> | ||
<td><code>[email protected]</code></td> | ||
<td>8452</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<p>다음과 같이 <code>DEVELOPERS</code> 테이블에 포함된 개발자 중 Python 스킬이나 C# 스킬을 가진 개발자의 정보가 결과에 나와야 합니다.</p> | ||
<table class="table"> | ||
<thead><tr> | ||
<th>ID</th> | ||
<th>EMAIL</th> | ||
<th>FIRST_NAME</th> | ||
<th>LAST_NAME</th> | ||
</tr> | ||
</thead> | ||
<tbody><tr> | ||
<td>D162</td> | ||
<td><code>[email protected]</code></td> | ||
<td>Cade</td> | ||
<td>Cunningham</td> | ||
</tr> | ||
<tr> | ||
<td>D164</td> | ||
<td><code>[email protected]</code></td> | ||
<td>Kelly</td> | ||
<td>Grant</td> | ||
</tr> | ||
<tr> | ||
<td>D165</td> | ||
<td><code>[email protected]</code></td> | ||
<td>Jerami</td> | ||
<td>Edwards</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<ul> | ||
<li>D162번 개발자의 경우 SKILL_CODE가 8452 = 8192 + 256 +4 로 Vue, <strong>Python</strong>, Cpp 스킬을 보유하고 있습니다.</li> | ||
<li>D164번 개발자의 경우 SKILL_CODE가 1024 로 <strong>C#</strong> 스킬을 보유하고 있습니다.</li> | ||
<li>D165번 개발자의 경우 SKILL_CODE가 400 = 256 + 128 + 16 으로 <strong>Python</strong>, Java, JavaScript 스킬을 보유하고 있습니다.</li> | ||
</ul> | ||
|
||
|
||
> 출처: 프로그래머스 코딩 테스트 연습, https://school.programmers.co.kr/learn/challenges |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
-- 코드를 작성해주세요 | ||
SELECT DISTINCT D.ID, D.EMAIL, D.FIRST_NAME, D.LAST_NAME | ||
FROM DEVELOPERS D, SKILLCODES S | ||
WHERE S.NAME = "Python" | ||
AND (D.SKILL_CODE & S.CODE) = S.CODE | ||
OR S.NAME = "C#" | ||
AND (D.SKILL_CODE & S.CODE) = S.CODE | ||
ORDER BY ID; |