안녕하세요.
아래처럼 했더니 3행,4행의 "customer_tbl"에서 에러가 납니다.
어떻게 처리해야 하나요?
테이블은 두개가 있습니다.
cust_tbl 과 mgr_tbl.
상호가 "테스트"이고 부서명이 없으면 "전산실"을 넣어라는 실행문입니다.
1 UPDATE mgr_tbl
2 SET mgr_tbl.dept = '전산실'
3 WHERE cust_tbl.cust_id = mgr_tbl.cust_id
4 AND cust_tbl.cust_name IN ( SELECT cust_tbl.cust_name FROM cust_tbl WHERE cust_tbl.cust_name LIKE '테스트')
5 AND mgr_tbl.dept IS NULL;