show databases;
use -;
show tables;
select * from -;
🎈 not like 여러번 사용하기
select name, email from - where (name not like '%test%' and name not like '%테스%' and name not like '%개발%') and (email not like '%test%' and email not like '%이메일%' and email not like '%Email%' and email like '%_%' and email like '%.com');
🎈 is not null 적용되지 않을 때
그냥 email 컬럼이 공백이 아니면 반환하게끔 email like '%_%'을 사용했다. (위 코드 참고)
'기타 > 🚪 DB' 카테고리의 다른 글
정규화와 비정규화 탄생배경 및 장단점 (0) | 2021.10.31 |
---|---|
RDBMS와 NoSQL의 차이점 및 장단점 (0) | 2021.10.31 |
효율적인 테이블 설계 방법 (0) | 2021.10.18 |
MySQL Workbench를 통해 EC2 DB사용하기 및 Spring Boot 세팅 (0) | 2021.08.12 |
MySQL/MariaDB # PRIMARY KEY, UNIQUE KEY, FOREIGN KEY (0) | 2021.07.30 |