조건
을 걸어줄 때select * from orders
where payment_method = 'kakaopay'
주의!
'kakaopay' 처럼 작은따옴표를 붙여줘야 '문자열' 임을 알 수 있다.
만약, 작은따옴표를 쓰지 않는다면 해당 kakaopay 도 테이블or필드로 컴퓨터가 이해하게 된다.
select * from point_users
where point > 5000
select * from orders
where course_title = '앱개발 종합반' and payment_method = 'CARD'
or
: 또는select * from users
where name = "황**"
select * from orders
where course_title != '웹개발 종합반'
!=
select * from orders
where created_at between "2020-07-13" and "2020-07-15"
between
and
select * from checkins
where week in (1, 3)
in ()
in (1, 3, 4, 5) 이렇게 계속 쓸 수 있다.
select * from users
where email like '%daum.net'
where email like 'a%'
email 필드값이 a로 시작하는 모든 데이터
where email like '%a'
email 필드값이 a로 끝나는 모든 데이터
where email like '%co%'
email 필드값에 co를 포함하는 모든 데이터
where email like 'a%o'
email 필드값이 a로 시작하고 o로 끝나는 모든 데이터
select email from users
where name = "남**"
select * from users
where created_at between "2020-07-12" and "2020-07-14"
and email like "%gmail.com"
SELECT * from orders
where email like '%naver.com'
and course_title = '웹개발 종합반'
and payment_method = 'kakaopay'