[MSSQL] in,not in, exists, not exists 내부 동작로직 및 예제
in,not in, exists, not exists 함수를 제대로 모르고 사용하게 되면 원하는 결과가 아닌 다른 결과를 가져와 프로그램 오류를 발생시킬 수 있다. 내부로직을 예제를 통해서 확인하고 제대로 활용해보도록 하자 --과일 테이블 생성 및 데이터 삽입 create table fruit( number int, fruit varchar(50) ) GO INSERT INTO fruit VALUES (1,'사과') INSERT INTO fruit VALUES (2,'바나나') INSERT INTO fruit VALUES (3,NULL) INSERT INTO fruit VALUES (NULL,'수박') INSERT INTO fruit VALUES (4,'망고') INSERT INTO fruit VALUE..
2023. 4. 15.