안녕하세요
mysql아래문장이 안되는건가요 에러가 나서
update tbl_juso set juso = select CONCAT(sido,' ',gu,' ',dong) FROM tbl_post where tbl_post.zip = tbl_juso.zip;
update tbl_juso set juso = ( select CONCAT(sido,' ',gu,' ',dong) FROM tbl_post where tbl_post.zip = tbl_juso.zip limit 1) ;
빠른답변 감사합니다.
그런데 그렇게해도 안되서
odbc3.51 mysql4.0.16입니다.
버전이 낮아서 그런가요
update tbl_juso , tbl_post
set juso = CONCAT(sido,' ',gu,' ',dong) where tbl_post.zip = tbl_juso.zip;