본문 바로가기

데이터베이스/Oracle

Oracle "quoted string not properly terminated" 에러

Oracle를 쓰다 보면 종종 발생하는 에러이다.

바로 ( ' ) (작은따옴표)를 지정하지 않아서 나는 에러이다. 

코드를 자세히 보면 알수있다 ㅠㅠ 꼭 꼭 확인하자!! 

 

SQL> select empno,ename,hiredate,to_char((sal*12)+comm,'$999,999) as "sal", to_char(((sal*12)+comm)*1.15, '$999,999') as "15% UP" from emp where comm is not null;
ERROR:


ORA-01756: quoted string not properly terminated