select customerid, to_date(babybirth1, 'yyyymmdd')
from etc_customer
where length(babybirth1) = 8;
위의 구문을 실행했더니 아래와 같은 메세지나옵니다.
ORA-01841: (full) year must be between -4713 and +9999, and not be 0
1515 rows selected.
그래서 제가 1516번째인 것을 검색해보니...
select customerid, to_date(babybirth1, 'yyyymmdd')
from etc_customer
where length(babybirth1) = 8
and customerid = 'kkkkkk';
검색이 되더라구요...
왜그러는 건가요... 알려주시면 감사하겠읍니다.
|