일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- BFS
- lambda
- 코테
- itertools
- Queue
- 완전탐색
- coding
- python
- 프로그래머스
- 연습문제
- Level2
- collections
- mysql
- Stack
- programmers
- level4
- coding test
- 파이썬
- counter
- CodingTest
- join
- 코딩테스트
- 데이터분석
- 시간복잡도
- 코딩
- import re
- 조합
- sql
- lv4
- time complexity
- Today
- Total
목록276035 (1)
ror_coding
[Programmers Lv.4] FrontEnd 개발자 찾기 - 276035
Question DEVELOPERS 테이블에서 Front End 스킬을 가진 개발자의 정보를 조회하려 합니다. 조건에 맞는 개발자의 ID, 이메일, 이름, 성을 조회하는 SQL 문을 작성해 주세요.결과는 ID를 기준으로 오름차순 정렬해 주세요. Code SELECT DISTINCT D.ID, EMAIL, FIRST_NAME, LAST_NAME FROM DEVELOPERS D JOIN SKILLCODES S ON D.SKILL_CODE & S.CODE WHERE CATEGORY = 'Front End' ORDER BY 1 now meOn my github
Algorithm/SQL
2025. 1. 12. 12:38