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