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 '%_%'을 사용했다. (위 코드 참고)