비교연산자 썸네일형 리스트형 [Database] Mysql subQuery 비교연산자. Mysql 에서 subQuery를 사용시, SubQuery 결과가 복수행이 나오면, 복수행에 맞는 비교연산자를 써야 된다. wrong ex) select * from RVDB_Contents where _id = (select content_id from RVDB_ContentsLoc where lat between $dLat-$iRange and $dLat+$iRange and lng between $dLng-$iRange and $dLng+$iRange); fix ex) select * from RVDB_Contents where _id IN (select content_id from RVDB_ContentsLoc where lat between $dLat-$iRange and $dLat+$iRang.. 더보기 이전 1 다음