SQL 오류: ORA-01830: 날짜 형식의 지정에 불필요한 데이터가 포함되어 있습니다
------------------------------------------------------------------------------------
년월일시분초
select to_timestamp('20121108101010') from dual;
result : 2012-11-08 10:10:10.00000000
초다음 0.1초 넣을시
select to_timestamp('20121108101010.1') from dual;
result : error
이럴시 데이터포멧을 넣는다.
select to_timestamp('20121108101010.1','yyyymmddhh24missff') from dual;
.을 넣을시 같이넣어줘야함.
select to_timestamp('20121108101010.1','yyyymmddhh24miss.ff') from dual;
출처 : http://kwoncharlie.blog.me/10109902487
INSERT 다른테이블내용 조회후 입력 (0) | 2012.11.14 |
---|
댓글 영역