반응형

SQL/postgresql 4

[postgresql] 테이블 2개 update / update 여러 개 / update 여러개 / select해서 update / 서브쿼리 update / subquery update

1. 테이블 2개 조건 걸어서 update 하는 방법 출처 https://otrodevym.tistory.com/entry/postgresqlupdate%EB%A5%BC-select%EB%A1%9C-%ED%95%98%EA%B8%B0 update 테이블A as t1 set amt = amt - t2.tot_amt from 테이블B as t2 where t1.key_seq = t2.key_seq and t1.company_code = t2.company_code and ... 주의할 점 : set 다음의 테이블A의 amt에는 [ t1.amt ] 라고 쓰지 않는다. 2. 내가 하고자 했던 것은 select해서 데이터를 만든 후 그 데이터 값으로 update하는 것이기 때문에, 테이블B 자리에 괄호를 열어 원하..

SQL/postgresql 2021.11.17

[postgresql] eclipse, mybatis 사용 round does not exist

org.postgresql.util.PSQLException: ERROR: function round(double precision, integer) does not exist Hint: No function matches the given name and argument types. You might need to add explicit type casts. 라는 에러를 만났는데 Console에 찍힌 쿼리를 실행해 보니 잘만 실행이 됐다. UPDATE table SET amt = round(#{javaDouble1} * #{javaDouble2}, 2) WHERE key = #{key} 쿼리는 이렇게 생긴 친구였는데, 검색을 좀 해 보니 round 앞에 넣은 변수가 java로 double 타입이라 그랬..

SQL/postgresql 2021.11.11
반응형