0. 문제 링크
https://school.programmers.co.kr/learn/courses/30/lessons/131120
1. 풀이 방법
- to_char로 month만 추출하여 03과 같은것만 추출했다.
- 추가로 TLNO가 NOT NULL인 것만 추출하였다.
2. 코드
-- 코드를 입력하세요
SELECT member_id, member_name, gender, to_char(date_of_birth, 'yyyy-mm-dd') DATE_OF_BIRTH
from member_profile
where to_char(date_of_birth, 'mm') = '03'
and tlno is not null
and gender = 'W'
order by member_id asc;
3. 마무리
'Computer Science > 데이터 베이스' 카테고리의 다른 글
[데이터베이스 - Oracle] 164673 - 조건에 부합하는 중고거래 댓글 조회하기 (1) | 2023.10.21 |
---|---|
[프로그래머스 - Oracle] 133025 - 과일로 만든 아이스크림 고르기 (1) | 2023.10.21 |
[프로그래머스 - Oracle] 144853 - 조건에 맞는 도서 리스트 출력하기 (0) | 2023.10.21 |
[프로그래머스 - Oracle] 151136 - 평균 일일 대여 요금 구하기 (0) | 2023.10.21 |
[프로그래머스 - Oracle] 133024 - 인기있는 아이스크림 (0) | 2023.10.21 |