본문 바로가기
내마음대로만들어보자/SQL

[SQL] Select, Where 기본 문법 예제

by 소농민! 2022. 2. 22.
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"

'내마음대로만들어보자 > SQL' 카테고리의 다른 글

[SQL] Join 테이블 연결하기  (0) 2022.03.06
[SQL] Group by, Order by  (0) 2022.02.26
[SQL] Select, Where절 기본문법  (0) 2022.02.21
[SQL] Select 쿼리문의 개념  (0) 2022.02.21