728x90
1. 성이 남씨인 유저의 이메일만 추출하기
SELECT email FROM users
WHERE name = '남**'
2. Gmail을 사용하는 2020/07/12~13에 가입한 유저를 추출하기
select * from users
where created_at between "2020-07-12" and "2020-07-14"
and email like "%gmail.com"
3. Gmail을 사용하는 2020/07/12~13에 가입한 유저의 수를 세기
select count(*) from users
where created_at between "2020-07-12" and "2020-07-14"
and email like "%gmail.com"
4. naver 이메일을 사용하면서, 웹개발 종합반을 신청했고 결제는 kakaopay로 이루어진 주문 데이터 추출하기
select * from orders
where email like '%naver.com'
and course_title = '웹개발 종합반'
and payment_method = 'kakaopay'
728x90
'개발일지 > DataBase' 카테고리의 다른 글
Alias (0) | 2022.07.02 |
---|---|
Group by, Order by (0) | 2022.06.28 |
Limit, Distinct, Count (0) | 2022.06.27 |
!=, between, like, and (0) | 2022.06.27 |
Select, Where 절 (0) | 2022.06.27 |