조건 질문에서요...
1. select forecast_model from xxxx
where
forecast_model in('MBI-5300','TF-C32xxMHD (Vermatrix)')
으로 검색하면 'MBI-5300' 은 나오는데 'TF-C32xxMHD (Vermatrix)' 는 나오질 안네요.
2. select forecast_model from xxxx
where
forecast_model ='TF-C32xxMHD (Vermatrix)' 로 검색을 하여도 'TF-C32xxMHD (Vermatrix)' 는 나오지 않네요.
3. select forecast_model from xxxx
where
forecast_model like '%TF-C32xxMHD (Vermatrix)%' 로 검색하면 결과가 나오는데요. 양쪽 끝이 띄어쓰기가 되어진 값은 아닙니다.
그런데 'TF-C32xxMHD (Vermatrix)' 의 경우는
4-1. select forecast_model from xxxx
where
forecast_model like 'TF-C32xxMHD (Vermatrix)'
4-2. select forecast_model from xxxx
where
forecast_model like '%TF-C32xxMHD (Vermatrix)' 처럼 4-1 과 4-2의 경우엔 결과 값이 출력이 되지 않습니다.
4-3. select forecast_model from xxxx
where
forecast_model like 'TF-C32xxMHD (Vermatrix)%' 4-3의 경우에는 결과 값이 출력이 되네요.
데이타를 지우고 다시 같은 값으로 입력을 하여도 같은 결과가 나옵니다.
어찌 그런건지 원인을 알수가 없네요.
5. select forecast_model from xxxx
where
forecast_model like 'TRC-1400 (with HDD)'
6. select forecast_model from xxxx
where
forecast_model ='TRC-1400 (with HDD)'
5와 6의 경우엔 둘다 검색결과가 보여지는데요
--------답변 부탁드려요~ ㅡ,ㅡ
|