초보입니다 ㅠㅠ
t_user에 user_nm컬럼과 cho_contacts의 user_nm 을 비교해서 같을때
t_user의 user_id를 cho_contacts의 user_id에 입력하기 입니다.
update cho_contacts
set cho_contacts.user_id = t_user.user_id
where t_user.user_nm = cho_contacts.user_nm
;
update cho_contacts
set user_id = (select user_id from t_user)
where user_nm = (select user_nm from t_user);
여러가지 시도해보고있는데 잘안되네요? ㅠㅠ 도와주세요 |