Select문과 같이쓰는 문법들 정리!
1) 같지 않음 (!=)
select * from orders
where course_title != "영어";
2) 범위 조건 (between)
select * from orders
where data '07-13' between '08-12'
3) 포함 조건 (in)
select * from orders
where week in(1,3);
- 1,3 주차 주문
4) 패턴(문자열 규칙) 조건 (Like)
select * from users
where email like '%daum.net';
🍯Like의 다양한 사용법
- 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로 끝나는 모든 데이터
5) 일부 데이터(개수)만 가져오기 (Limit)
select * from orders
where payment_method = "kakaopay"
limit 5;
6) 중복 데이터 제거 (Distinct)
select distinct(payment_method) from orders;
7) Count
select count(*) from orders
끄트읕 하나씩 하나씩 레츠고
'DataBase > Mysql' 카테고리의 다른 글
[SQL] 테이블 연결 , Join 과 Union (0) | 2022.01.06 |
---|---|
[SQL] SQL 쿼리문, 통계 데이터 내기 (0) | 2022.01.06 |
Mysql 중복 데이터 제거(같은 테이블 유사 데이터 제거) (0) | 2021.09.23 |
Mysql 테이블 이름 변경하기 (Table RENAME) (0) | 2021.08.05 |
[Mysql] 기본 문법 데이터베이스 생성 및 테이블 조작(CREATE) (0) | 2021.08.03 |