일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 완전탐색
- sql
- itertools
- Level2
- 프로그래머스
- programmers
- 데이터분석
- lv4
- level4
- 코테
- counter
- join
- 코딩
- time complexity
- coding
- 코딩테스트
- import re
- Stack
- collections
- lambda
- coding test
- 조합
- mysql
- Queue
- 연습문제
- python
- 파이썬
- BFS
- CodingTest
- 시간복잡도
- 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