where 퀴즈 풀어보기 오답노트

김지은·2023년 2월 23일
0

SQL 첫 걸음

목록 보기
14/18

Gmail을 사용하는 2020/07/12~13에 가입한 유저를 추출하기

  • select * from 테이블 where 필드 between '2020-07-12' and '2020-07-14' and 이메일필드 like '%gamil.com'
select * from users
where created_at between "2020-07-12" and "2020-07-14"
and email like "%gmail.com";

Gmail을 사용하는 2020/07/12~13에 가입한 유저의 수를 세기

  • select count(*) from 테이블 where 필드 between '2020-07-12' and '202-07-14' and 이메일필드 like '%email.com'
select count(*) from users
where created_at between "2020-07-12" and "2020-07-14"
and email like "%gmail.com";
profile
jeun 개발일지 첫 걸음

0개의 댓글