MySQL 특정 조건을 제외하고 select 하기
페이지 정보
본문
select * from [테이블명] where [컬럼명] not in('조건1', '조건2', ... );
예제 ) select * from USERS where userId not in('1', '2'. '3');
userId가 1, 2, 3인 것을 제외한 모든 select
참고자료
https://giyatto.tistory.com/85
예제 ) select * from USERS where userId not in('1', '2'. '3');
userId가 1, 2, 3인 것을 제외한 모든 select
참고자료
https://giyatto.tistory.com/85
댓글목록
등록된 댓글이 없습니다.