select * from orders;
// orders테이블의 모든 데이터를 가져온다
select created_at, course_title, payment_method, email from orders;
// orders 테이블의 created_at, course_title, payment_method, email 필드를 가져온다.
select * from orders where course_title = "앱개발 종합반" and payment_method = "kakaopay";
// orders 테이블의 모든 필드에서 course_title = "앱개발 종합반"이고 payment_method = "kakaopay"인
필드를 가져온다.
.
select * from orders where course_title != "웹개발 종합반";
// orders 테이블에서 모든 필드의 정보를 가져오되, course_title = "웹개발 종합반" 아닌것을 가져온다.
select * from users where email like '%daum.net';
// user테이블의 모든 정보를 가져오는데, 이메일 형식이 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 * from users where email like 's%com' and name = "이**";
// 이메일이 s로 시작하고 com로 끝나면서 성이 이씨인 유저만 추출
select * from orders where payment_method = "kakaopay" limit 5;
// 일부 데이터만 가져오는 Limit
select distinct(payment_method) from orders;
//distinct(payment_method) payment_method가 중복인 필드는 가져오지 않는다.
select * from users where created_at between "2020-07-12" and "2020-07-14" and email like "%gmail.com";
// gmail을 사용하는 2020/07/12~13에 가입한 유저를 추출하기