포럼
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
db 가 뻗어요
2013.04.16 12:53
update xe_documents JOIN xe_documents_b ON xe_documents.song_no =xe_documents_b.song_no set xe_documents.regdate = xe_documents_b.regdate
db 에서 위와같이 조인을 하여 실행하면 홈페이지도 뻗어버리네요
양이 많아서 그런건지 명령이 틀린건지 아니면 혹 regdate 를 20121101 보다 큰것만 실행하라고 하면 될런지 잘모르겠네요
xe_documents_b 는 백업한겁니다.
고수님의 의견및 도움을 바랍니다. ^^
댓글 2
-
jahong
2013.05.01 23:57
-
박물관
2013.05.03 11:23
에고~ 이렇게 관심 가져 주셔서 감사합니다.
지금은 바빠서 못해보고 나중에 시간날때 적용해 볼께요..감사합니다. ^^
sql 문을 이렇게 바꿔보심이 어떨지....
update xe_documents a
set a.regdate = ( select b.regdate
from xe_documents_b b
where a.song_no = b.song_no limit 1)
where exists (select 1 from xe_documents_b b where a.song_no = b.song_no)