SQL 1주차
모든 table 보는 방법: SHOW TABLES (+ ctrl+enter)
orders라는 table 안에 전체정보 읽는 방법: select * from orders
*: 모든 필드를 의미
cf) abc라는 특정 필드만 가져오기 원하는 경우: select abc from orders
조건을 걸어주는 수식어 : where
ex1) 결제수단이 카카오페이인 데이터만 가져오기
: select from orders
where payment_method = 'kakaopay'
※숫자인 경우 '' 사용 x
명칭인 경우 '' 사용 o
ex2) point_users에서 포인트가 500점 이상인 데이터만 가져오기
: select from point_users
where point >= 500
ex3) 강의가 앱개발 종합반이면서 결제수단이 카드인 주문 데이터만 가져오기
: select from orders
where course_title = '앱개발 종합반' and payment_method = 'card'
ex4) 성이 황씨인 유저 데이터만 가져오기(데이터자료에는 황__로 정리되어있음)
: select from users
where name = '황__'
(그 외 조건)