반응형
마이바티스 이용시 insert into select를 하면
"; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: ORA-00933: SQL 명령어가 올바르게 종료되지 않았습니다
"
00933에러를 보게된다.
<insert id="testSql" parameterType="map">
INSERT INTO table_name
(test)
(select test from test)
</insert>
<update id="testSql" parameterType="map">
INSERT INTO table_name
(test)
(select test from test)
</update>
insert를 update로 바꿔 주면 된다.
by. 조조나리
반응형
'[DataBase] > Oracle' 카테고리의 다른 글
gorup by rollup(xxx, yyy)시 소계, 합계 구분하기 (0) | 2017.06.14 |
---|---|
Insert시 Key 관련 에러 - Error getting generated key or setting result to parameter object. (0) | 2017.01.16 |
mysql과 oracle의 paging (0) | 2017.01.13 |
오라클 예약어를 DTO에서 사용하기 (0) | 2017.01.12 |
ERROR - ORA-00923: FROM 키워드가 필요한 위치에 없습니다. (0) | 2017.01.11 |
댓글