Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 한빛미디어
- MySQL
- matplotlib
- 서평단
- Pandas
- Google Analytics
- 매틀랩
- 월간결산
- MATLAB
- Python
- SQL
- 통계학
- Visualization
- 리눅스
- Linux
- 텐서플로
- 딥러닝
- 서평
- 한빛미디어서평단
- 블로그
- python visualization
- 티스토리
- Tistory
- Ga
- 파이썬 시각화
- 파이썬
- 시각화
- 독후감
- Blog
- tensorflow
Archives
- Today
- Total
pbj0812의 코딩 일기
[SQL] REGEXP 를 이용한 정규식 조건에 들어맞는 데이터만 추출하기 본문
0. 목표
- REGEXP 를 이용한 정규식 조건에 들어맞는 데이터만 추출하기
1. 실습하기
1) 테이블 생성 및 데이터 삽입
DROP TABLE sql_test.regular_test;
CREATE TABLE sql_test.regular_test
(
reviews varchar(256)
);
INSERT INTO sql_test.regular_test(reviews) VALUES('abc123');
INSERT INTO sql_test.regular_test(reviews) VALUES('안녕하세요123');
INSERT INTO sql_test.regular_test(reviews) VALUES('1abc안녕하세요');
INSERT INTO sql_test.regular_test(reviews) VALUES('ㅇㄹㅇ러ㅏㅣ퍼--09');
INSERT INTO sql_test.regular_test(reviews) VALUES('www.abc.com');
INSERT INTO sql_test.regular_test(reviews) VALUES('dfdjkiiia안녕ddfkk');
INSERT INTO sql_test.regular_test(reviews) VALUES('1r25t55');
INSERT INTO sql_test.regular_test(reviews) VALUES('노잼');
INSERT INTO sql_test.regular_test(reviews) VALUES('hellow');
INSERT INTO sql_test.regular_test(reviews) VALUES('abbc');
INSERT INTO sql_test.regular_test(reviews) VALUES('123');
INSERT INTO sql_test.regular_test(reviews) VALUES('www.acc.com');
INSERT INTO sql_test.regular_test(reviews) VALUES('a');
INSERT INTO sql_test.regular_test(reviews) VALUES('abc;');
INSERT INTO sql_test.regular_test(reviews) VALUES('na1');
INSERT INTO sql_test.regular_test(reviews) VALUES('sa1');
INSERT INTO sql_test.regular_test(reviews) VALUES('abc');
INSERT INTO sql_test.regular_test(reviews) VALUES('bbq');
INSERT INTO sql_test.regular_test(reviews) VALUES('\\');
INSERT INTO sql_test.regular_test(reviews) VALUES('aaaaa');
2) 추출하기
(1) 숫자로만 이루어져 있는 데이터 추출하기
SELECT *
FROM sql_test.regular_test
WHERE reviews REGEXP ('^[0-9]*$');
(2) 한글로만 이루어져 있는 데이터 추출하기
SELECT *
FROM sql_test.regular_test
WHERE reviews REGEXP ('^[가-힣]*$');
(3) 영어로만 이루어져 있는 데이터 추출하기
SELECT *
FROM sql_test.regular_test
WHERE reviews REGEXP ('^[a-zA-Z]*$');
(4) 영어나 숫자로만 이루어져 있는 데이터 추출하기
SELECT *
FROM sql_test.regular_test
WHERE reviews REGEXP ('^[a-zA-Z0-9]*$');
(5) 해당 문자들이 포함된 데이터 추출하기
SELECT *
FROM sql_test.regular_test
WHERE reviews REGEXP ('abc');
(6) a 와 c 사이에 문자 하나가 들어간 데이터 추출하기
SELECT *
FROM sql_test.regular_test
WHERE reviews REGEXP ('a.c');
(7) n 또는 s 이후 a 가 포함된 데이터 추출하기
SELECT *
FROM sql_test.regular_test
WHERE reviews REGEXP ('[ns]a');
'ComputerLanguage_Program > SQL' 카테고리의 다른 글
[SQL] 복수개의 json 정보들을 풀어헤치기 (0) | 2023.02.16 |
---|---|
[SQL] 윈도우 함수를 이용한 이동 평균 구하기 (0) | 2022.09.27 |
[SQL] window 함수 frame 절 예제 (0) | 2022.03.15 |
[SQL] 이탈 회원 확인 (0) | 2022.02.07 |
[SQL] rolling retention 계산 (0) | 2022.02.01 |
Comments