Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 |
Tags
- java
- GCP
- Spring MVC 동작원리
- 인텔리제이
- 자바
- 백준 11659
- 프로그래머스
- 재귀함수
- Spring MVC 구성요소
- 백준
- 코드스테이츠
- 버블정렬
- 코드스테이츠 백엔드
- 싱글톤패턴
- 11659
- OOP
- 성능테스트툴
- 투포인터알고리즘
- vm인스턴스생성
- MySQL
- 알고리즘
- String.valueOf()
- 재귀와반복문
- 클라우드에서 도커 실행하기
- List.of
- Array.asList
- 구간합구하기
- Spring Web MVC
- 코딩테스트
- 스택
Archives
- Today
- Total
목록Employee Salaries (1)
순간을 기록으로
[MySQL] Employee Salaries
문제 - 월급(salary)이 $2000을 초과하고(and) 회사에 다닌 지 10개월(month) 미만인 직원의 이름 리스트를 조회하세요. - 조회 결과는 id(employee_id)를 기준으로 오름차순으로 정렬(order)합니다. 풀이 select name from employee where salary > 2000 and months < 10 order by employee_id; 출처: https://www.hackerrank.com/challenges/salary-of-employees/problem?isFullScreen=true&h_r=next-challenge&h_v=zen Employee Salaries | HackerRank Print the names of employees who ea..
Problem Solving
2022. 3. 29. 13:54