728x90
반응형
https://school.programmers.co.kr/learn/courses/30/lessons/131120
여자인 경우, 3월인 경우, 전화번호가 NULL이 아닌 경우를 그룹 아이디로 오름차순으로 정렬하는 sql문
date_format은 형식을 맞춰줘야 정답으로 처리한다.
select member_id, member_name, gender, date_format(date_of_birth, '%Y-%m-%d') date_of_birth
from member_profile
where tlno is not null
and month(date_of_birth) = 3
and gender = 'W'
order by member_id;
728x90
반응형
'알고리즘' 카테고리의 다른 글
[백준] 2170번: 선 긋기 - python (0) | 2024.04.02 |
---|---|
[백준] 2292번: 벌집 - python (0) | 2024.04.02 |
[백준] 2667번: 단지번호붙이기 - python (0) | 2024.04.01 |
[백준] 15894번: 수학은 체육과목 입니다 - python (0) | 2024.04.01 |
[백준] 11055번: 가장 큰 증가하는 부분 수열 - python (0) | 2024.04.01 |